зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1027819 - Replace the deprecated initEvent code with the CustomEvent constructor. r=jaws
This commit is contained in:
Родитель
333b876740
Коммит
085d53d4c1
|
@ -28,8 +28,10 @@ function init_all() {
|
|||
gContentPane.init();
|
||||
gSyncPane.init();
|
||||
gSecurityPane.init();
|
||||
var initFinished = document.createEvent("Event");
|
||||
initFinished.initEvent("Initialized", true, true);
|
||||
var initFinished = new CustomEvent("Initialized", {
|
||||
'bubbles': true,
|
||||
'cancelable': true
|
||||
});
|
||||
document.dispatchEvent(initFinished);
|
||||
|
||||
let categories = document.getElementById("categories");
|
||||
|
|
Загрузка…
Ссылка в новой задаче