Fixed some edge-specific bugs

This commit is contained in:
Tamius Han 2018-09-25 23:37:08 +02:00
parent 255cdd9820
commit ee268c5e9c
4 changed files with 22 additions and 7 deletions

View File

@ -1,10 +1,10 @@
// Set prod to true when releasing
_prod = true;
// _prod = false;
//_prod = true;
_prod = false;
Debug = {
init: true,
debug: false,
debug: true,
keyboard: true,
debugResizer: true,
debugArDetect: true,

View File

@ -103,8 +103,8 @@ class Settings {
}
async get() {
if (BrowserDetect.firefox || BrowserDetect.edge) {
const ret = this.useSync ? await browser.storage.sync.get('uwSettings') : await browser.storage.local.get('uwSettings');
if (BrowserDetect.firefox) {
const ret = await browser.storage.local.get('uwSettings');
try {
return JSON.parse(ret.uwSettings);
} catch(e) {
@ -115,6 +115,11 @@ class Settings {
chrome.storage.sync.get('uwSettings', (res) => resolve(res));
});
return ret['uwSettings'];
} else if (BrowserDetect.edge) {
const ret = new Promise( (resolve, reject) => {
browser.storage.sync.get('uwSettings', (res) => resolve(res));
});
return ret['uwSettings'];
}
}

View File

@ -12,6 +12,9 @@ if(Debug.debug){
}
}
if (BrowserDetect.edge) {
HTMLCollection.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator];
}
class UW {
constructor(){

View File

@ -494,7 +494,9 @@ function validateAutoArTimeout(){
}
document.addEventListener("click", (e) => {
if(Debug.debug) {
console.log("[popup.js] something clicked. event:", e, JSON.stringify(e));
}
function getcmd(e){
var command = {};
@ -791,7 +793,12 @@ document.addEventListener("click", (e) => {
//#endregion
}
var command = getcmd(e);
var command = getcmd(e);
if(Debug.debug) {
console.log("[popup.js] Got command (can be undefined):", command, JSON.stringify(command))
}
if(command)
port.postMessage(command);