Bug 1010271 - remove active attribute when toolbox iframe gets destroyed. r=jryans

This commit is contained in:
Paul Rouget 2014-05-18 03:05:00 +02:00
Родитель ae263d1375
Коммит 358d9a21b0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -395,7 +395,6 @@ let UI = {
if (this.toolboxPromise) {
this.toolboxPromise.then(toolbox => {
toolbox.destroy();
document.querySelector("#action-button-debug").removeAttribute("active");
this.toolboxPromise = null;
}, this.console.error);
}
@ -436,6 +435,7 @@ let UI = {
let splitter = document.querySelector(".devtools-horizontal-splitter");
splitter.setAttribute("hidden", "true");
document.querySelector("#action-button-debug").removeAttribute("active");
},
console: {