2024-03-13 18:39:42 +00:00
|
|
|
/*\
|
|
|
|
title: $:/core/modules/commands/quit.js
|
|
|
|
type: application/javascript
|
|
|
|
module-type: command
|
|
|
|
|
|
|
|
Immediately ends the TiddlyWiki process
|
|
|
|
|
|
|
|
\*/
|
|
|
|
(function(){
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
exports.info = {
|
|
|
|
name: "quit",
|
|
|
|
synchronous: true
|
|
|
|
};
|
|
|
|
|
|
|
|
var Command = function(params,commander,callback) {
|
|
|
|
var self = this;
|
|
|
|
this.params = params;
|
|
|
|
this.commander = commander;
|
|
|
|
this.callback = callback;
|
|
|
|
};
|
|
|
|
|
|
|
|
Command.prototype.execute = function() {
|
2024-03-25 22:33:41 +00:00
|
|
|
// Clear any pending commands
|
|
|
|
this.commander.clearCommands();
|
2024-03-19 10:04:32 +00:00
|
|
|
// We don't actually quit, we just issue the "th-quit" hook to give listeners a chance to exit
|
|
|
|
$tw.hooks.invokeHook("th-quit");
|
2024-03-13 18:39:42 +00:00
|
|
|
return null;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.Command = Command;
|
|
|
|
|
|
|
|
})();
|