File size: 383 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
/**
* Module variables
*/
let quitter = false;
function AppQuit() {
this.canQuit = false;
}
AppQuit.prototype.shouldQuitToBackground = function () {
if ( this.canQuit ) {
this.canQuit = false;
return false;
}
return true;
};
AppQuit.prototype.allowQuit = function () {
this.canQuit = true;
};
if ( ! quitter ) {
quitter = new AppQuit();
}
module.exports = quitter;
|