diff --git a/webext/modules/windowEvent.jsm b/webext/modules/windowEvent.jsm deleted file mode 100644 index 9318337..0000000 --- a/webext/modules/windowEvent.jsm +++ /dev/null @@ -1,13 +0,0 @@ -var EXPORTED_SYMBOLS = ["windowEvent"]; - -var windowEvent = { - value : 0, - incValue: function() { - this.value++; - }, - getValue: function() { - return this.value; - }, -}; - -console.log("Loading windowEvent.jsm");