aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/util.js
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2017-07-10 15:00:38 -0700
committerAlex Yatskov <alex@foosoft.net>2017-07-10 15:00:38 -0700
commit28bc1449d1b2260df2970318982385b0d8456c54 (patch)
tree063156eb4b3191bdd0a0703e3302fa672f907a6f /ext/bg/js/util.js
parentf694026827ab2ce3a884206f7494b98335137709 (diff)
cleanup
Diffstat (limited to 'ext/bg/js/util.js')
-rw-r--r--ext/bg/js/util.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js
index 1954e83b..b8a60217 100644
--- a/ext/bg/js/util.js
+++ b/ext/bg/js/util.js
@@ -430,32 +430,6 @@ function dictFieldFormat(field, definition, mode, options) {
/*
- * Json
- */
-
-function jsonLoad(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);
- xhr.send();
- }).then(responseText => {
- try {
- return JSON.parse(responseText);
- }
- catch (e) {
- return Promise.reject('invalid JSON response');
- }
- });
-}
-
-function jsonLoadInt(url) {
- return jsonLoad(chrome.extension.getURL(url));
-}
-
-/*
* Helpers
*/