1
0
mirror of https://github.com/MatMoul/quickdial-webext.git synced 2024-12-23 15:36:12 +00:00

Bug correction : load page is white when firefox start

This commit is contained in:
MatMoul 2017-09-29 23:38:24 +02:00
parent 2ea5d7fdc8
commit 67afc16031
2 changed files with 4 additions and 2 deletions

View File

@ -18,7 +18,9 @@ window.onload = function(){
break; break;
} }
}); });
} else initPage(); } else{
setTimeout(initPage, 100);
}
}, function(){}); }, function(){});
} }
initPage(); initPage();

View File

@ -2,7 +2,7 @@
"manifest_version": 2, "manifest_version": 2,
"name": "__MSG_extensionName__", "name": "__MSG_extensionName__",
"version": "0.0.4", "version": "0.0.5",
"description": "__MSG_extensionDescription__", "description": "__MSG_extensionDescription__",