Rename tiddlerTitle variable to currentTiddler

This commit is contained in:
Jeremy Ruston
2013-10-28 23:40:45 +00:00
parent 0a9ad8efaf
commit bf48e6f8a1
23 changed files with 25 additions and 25 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ exports.params = [];
Run the macro
*/
exports.run = function() {
return this.wiki.getChangeCount(this.getVariable("tiddlerTitle")) + "";
return this.wiki.getChangeCount(this.getVariable("currentTiddler")) + "";
};
})();