diff options
author | Ruben Rodriguez <ruben@gnu.org> | 2015-07-23 11:57:18 -0500 |
---|---|---|
committer | Ruben Rodriguez <ruben@gnu.org> | 2015-10-12 23:20:25 -0500 |
commit | 50557a44e8257abc03913ed5b0828e9fa509dc85 (patch) | |
tree | ad3e0de888a7925c17bd522a339d8837a470f145 /data/extensions | |
parent | 6a6d63d8f2e6e04644fcf93d9937508af6eefff2 (diff) |
Finished v38 initial rebase
Diffstat (limited to 'data/extensions')
-rw-r--r-- | data/extensions/spyblock@gnu.org/lib/utils.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/data/extensions/spyblock@gnu.org/lib/utils.js b/data/extensions/spyblock@gnu.org/lib/utils.js index cd69bf9..13f4876 100644 --- a/data/extensions/spyblock@gnu.org/lib/utils.js +++ b/data/extensions/spyblock@gnu.org/lib/utils.js @@ -54,18 +54,6 @@ let Utils = exports.Utils = get isFennec() { let {application} = require("info"); - let result = (application == "fennec" || application == "fennec2"); - Object.defineProperty(this, "isFennec", {value: result}); - return result; - }, - - /** - * Returns whether we are running in Fennec, for Fennec-specific hacks - * @type Boolean - */ - get isFennec() - { - let {application} = require("info"); let result = (application == "fennec" || application == "fennec2" || application == "icecatmobile"); Utils.__defineGetter__("isFennec", () => result); return result; |