mirror of https://github.com/gorhill/uBlock.git
This commit is contained in:
parent
7cd8185f3a
commit
178b82eb6a
|
@ -188,8 +188,6 @@ var onInitialize = function(options) {
|
|||
}
|
||||
self.cloud.options = options;
|
||||
|
||||
fetchCloudData();
|
||||
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open('GET', 'cloud-ui.html', true);
|
||||
xhr.overrideMimeType('text/html;charset=utf-8');
|
||||
|
@ -214,6 +212,10 @@ var onInitialize = function(options) {
|
|||
uDom('#cloudCog').on('click', openOptions);
|
||||
uDom('#cloudOptions').on('click', closeOptions);
|
||||
uDom('#cloudOptionsSubmit').on('click', submitOptions);
|
||||
|
||||
// Patch 2018-01-05: Must not assume this XHR will always be faster
|
||||
// than messaging
|
||||
fetchCloudData();
|
||||
};
|
||||
xhr.send();
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue