mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-03-03 22:39:50 +00:00
* fix: apply automatic eslint fixes * lint: allow hashbang comment for tiddlywiki.js * lint: first back of manual lint fixes for unused vars * lint: added more fixes for unused vars * lint: missed files * lint: updated eslint config with selected rules from #9669
26 lines
528 B
JavaScript
26 lines
528 B
JavaScript
/*\
|
|
title: $:/core/modules/widgets/log.js
|
|
type: application/javascript
|
|
module-type: widget-subclass
|
|
|
|
Widget to log debug messages
|
|
|
|
\*/
|
|
|
|
"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);
|
|
};
|