mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-23 23:46:52 +00:00
33 lines
483 B
JavaScript
33 lines
483 B
JavaScript
|
/*\
|
||
|
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;
|
||
|
|
||
|
})();
|