Bug 820799 - Set the lastSelected property to an empty string rather than null, since the latter stringifies to 'null'. r=neil

--HG--
extra : rebase_source : 18301071202f5d2f50d5d8cd4c06eab7ab03b155
This commit is contained in:
Dão Gottwald 2012-12-14 01:08:07 +01:00
Родитель 706f310cff
Коммит 2c59cbb336
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -629,7 +629,7 @@
if (this.lastSelected) {
lastPane = document.getElementById(this.lastSelected);
if (!lastPane) {
this.lastSelected = null;
this.lastSelected = "";
}
}