1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-15 08:24:22 +00:00
TiddlyWiki5/rabbithole/core/modules/commands/verbose.js

33 lines
483 B
JavaScript
Raw Normal View History

/*\
title: $:/core/commands/verbose.js
type: application/javascript
module-type: command
Verbose command
\*/
(function(){
/*jslint node: true, browser: true */
"use strict";
exports.info = {
name: "verbose",
synchronous: true,
params: {}
}
var Command = function(params,commander) {
this.params = params;
this.commander = commander;
};
Command.prototype.execute = function() {
this.commander.verbose = true;
return null; // No error
}
exports.Command = Command;
})();