Raymond Hill
7 years ago
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with
2 additions and
2 deletions
-
src/js/cloud-ui.js
|
@ -174,8 +174,6 @@ var onInitialize = function(options) { |
|
|
} |
|
|
} |
|
|
self.cloud.options = options; |
|
|
self.cloud.options = options; |
|
|
|
|
|
|
|
|
fetchCloudData(); |
|
|
|
|
|
|
|
|
|
|
|
var xhr = new XMLHttpRequest(); |
|
|
var xhr = new XMLHttpRequest(); |
|
|
xhr.open('GET', 'cloud-ui.html', true); |
|
|
xhr.open('GET', 'cloud-ui.html', true); |
|
|
xhr.overrideMimeType('text/html;charset=utf-8'); |
|
|
xhr.overrideMimeType('text/html;charset=utf-8'); |
|
@ -200,6 +198,8 @@ var onInitialize = function(options) { |
|
|
uDom('#cloudCog').on('click', openOptions); |
|
|
uDom('#cloudCog').on('click', openOptions); |
|
|
uDom('#cloudOptions').on('click', closeOptions); |
|
|
uDom('#cloudOptions').on('click', closeOptions); |
|
|
uDom('#cloudOptionsSubmit').on('click', submitOptions); |
|
|
uDom('#cloudOptionsSubmit').on('click', submitOptions); |
|
|
|
|
|
|
|
|
|
|
|
fetchCloudData(); |
|
|
}; |
|
|
}; |
|
|
xhr.send(); |
|
|
xhr.send(); |
|
|
}; |
|
|
}; |
|
|