Grammalecte  Diff

Differences From Artifact [f7c38c5176]:

To Artifact [be440d6472]:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Background 

"use strict";


function showError (e) {
    console.error(e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message);
}

// Chrome don’t follow the W3C specification:
// https://browserext.github.io/browserext/
if (typeof(chrome) === "object") {
    var browser = chrome;
}


/*
    Worker (separate thread to avoid freezing Firefox)
*/











|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Background 

"use strict";


function showError (e) {
    console.error(e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message);
}

// Chrome don’t follow the W3C specification:
// https://browserext.github.io/browserext/
if (typeof(browser) !== "object") {
    var browser = chrome;
}


/*
    Worker (separate thread to avoid freezing Firefox)
*/