1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-30 07:50:47 +00:00

Add a changecount macro

This commit is contained in:
Jeremy Ruston 2013-10-25 22:29:49 +01:00
parent b3ae45cbde
commit bdcead624a

View File

@ -0,0 +1,30 @@
/*\
title: $:/core/modules/macros/changecount.js
type: application/javascript
module-type: macro
Macro to return the changecount for the current tiddler
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
/*
Information about this macro
*/
exports.name = "changecount";
exports.params = [];
/*
Run the macro
*/
exports.run = function() {
return this.wiki.getChangeCount(this.getVariable("tiddlerTitle")) + "";
};
})();