mirror of
https://github.com/Ximi1970/systray-x.git
synced 2026-05-06 06:57:25 +02: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");
|