mirror of
https://github.com/Ximi1970/systray-x.git
synced 2026-01-16 04:02:03 +01:00
14 lines
219 B
JavaScript
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");
|