Bug 1027819 - Replace the deprecated initEvent code with the CustomEvent constructor. r=jaws

This commit is contained in:
Vikneshwar 2014-06-20 11:28:00 +02:00
Родитель 333b876740
Коммит 085d53d4c1
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -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");