Bug 1279740 - Cannot open scratchpad with browser execution context preset. r=jryans

This commit is contained in:
Philipp Kewisch 2016-06-11 23:58:48 +02:00
Родитель 718ea32bcf
Коммит 6b67f0dc68
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1703,7 +1703,9 @@ var Scratchpad = {
if (state) {
state = JSON.parse(state);
this.setState(state);
initialText = state.text;
if ("text" in state) {
initialText = state.text;
}
}
} else {
this._instanceId = ScratchpadManager.createUid();