Bug 1535949 - browser.js: Fix typo in the identifier r=JanH

Differential Revision: https://phabricator.services.mozilla.com/D23812

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Sylvestre Ledru 2019-03-17 20:41:46 +00:00
Родитель 4cfc36dbe8
Коммит 2dc83b1ba4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1325,7 +1325,7 @@ var BrowserApp = {
}
this._tabs[toPosition] = movedTab;
let evt = new UIEvent("TabMove", {"bubbles":true, "cancellable":false, "view":window, "detail":fromPosition});
let evt = new UIEvent("TabMove", {"bubbles":true, "cancelable":false, "view":window, "detail":fromPosition});
this.tabs[toPosition].browser.dispatchEvent(evt);
},