mirror of
				https://github.com/Jermolene/TiddlyWiki5
				synced 2025-10-31 15:42:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			470 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			470 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /*\
 | |
| 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("currentTiddler")) + "";
 | |
| };
 | |
| 
 | |
| })();
 | 
