1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2026-04-04 22:11:31 +00:00
Files
TiddlyWiki5/core/modules/widgets/log.js
Jeremy Ruston d8b0e041b6 Initial commit
2026-02-19 12:45:27 +00:00

23 lines
495 B
JavaScript

/*\
title: $:/core/modules/widgets/log.js
type: application/javascript
module-type: widget-subclass
\*/
"use strict";
exports.baseClass = "action-log";
exports.name = "log";
exports.constructor = function(parseTreeNode,options) {
this.initialise(parseTreeNode,options);
}
exports.prototype = {};
exports.prototype.render = function(event) {
Object.getPrototypeOf(Object.getPrototypeOf(this)).render.call(this,event);
Object.getPrototypeOf(Object.getPrototypeOf(this)).log.call(this);
}