Files
SysTray-X/webext/modules/windowEvent.jsm
2020-05-10 20:55:27 +02:00

14 lines
219 B
JavaScript

var EXPORTED_SYMBOLS = ["windowEvent"];
var windowEvent = {
value : 0,
incValue: function() {
this.value++;
},
getValue: function() {
return this.value;
},
};
console.log("Loading windowEvent.jsm");