This page is part of a static HTML representation of the TiddlyWiki at https://tiddlywiki.com/dev/

donothing.js

 1st February 2019 at 10:24pm
/*\

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;

})();