mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-03-10 16:52:22 -07:00
15 lines
275 B
JavaScript
15 lines
275 B
JavaScript
/*\
|
|
title: $:/core/modules/macros/changecount.js
|
|
type: application/javascript
|
|
module-type: macro
|
|
\*/
|
|
|
|
"use strict";
|
|
|
|
exports.name = "changecount";
|
|
|
|
exports.params = [];
|
|
|
|
exports.run = function() {
|
|
return this.wiki.getChangeCount(this.getVariable("currentTiddler")) + "";
|
|
};
|