1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-19 02:39:42 +00:00
TiddlyWiki5/editions/dev/tiddlers/javascript-widget-tutorial/donothing.js

17 lines
220 B
JavaScript
Raw Normal View History

/*\
Do nothing widget
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
var Widget = require("$:/core/modules/widgets/widget.js").widget;
exports.donothing = Widget;
})();