From 2a29429104618c25a752a2f3b61527cec9921447 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Sat, 28 Jan 2017 20:36:58 -0800 Subject: [PATCH] WIP --- ext/bg/js/util.js | 1 + ext/fg/js/driver.js | 6 +++--- ext/manifest.json | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js index 0b649ef6..24050cf3 100644 --- a/ext/bg/js/util.js +++ b/ext/bg/js/util.js @@ -240,6 +240,7 @@ function formatField(field, definition, mode, options) { function loadJson(url) { return new Promise((resolve, reject) => { const xhr = new XMLHttpRequest(); + xhr.overrideMimeType('application/json'); xhr.addEventListener('load', () => resolve(xhr.responseText)); xhr.addEventListener('error', () => reject('failed to execute network request')); xhr.open('GET', url); diff --git a/ext/fg/js/driver.js b/ext/fg/js/driver.js index 5467a9f0..2e818acf 100644 --- a/ext/fg/js/driver.js +++ b/ext/fg/js/driver.js @@ -67,9 +67,9 @@ class Driver { return; } - if (e.which === 1 /* lmb */) { - return; - } + // if (e.which === 1 /* lmb */) { + // return; + // } if (this.options.scanning.requireShift && !e.shiftKey) { return; diff --git a/ext/manifest.json b/ext/manifest.json index 2ac61690..0fd72386 100644 --- a/ext/manifest.json +++ b/ext/manifest.json @@ -12,6 +12,7 @@ "content_scripts": [{ "matches": ["*://*/*", "file://*/*"], "js": [ + "fg/js/gecko.js", "fg/js/source-range.js", "fg/js/source-element.js", "fg/js/popup.js",