1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-18 19:39:55 +00:00
TiddlyWiki5/core/modules/new_widgets/tempwidgets.js
Jeremy Ruston ed35d91be6 Initial Commit
Carried over from the abortive pull request #169
2013-10-12 17:05:13 +01:00

23 lines
414 B
JavaScript
Executable File

/*\
title: $:/core/modules/new_widgets/tempwidgets.js
type: application/javascript
module-type: new_widget
Temporary shim widgets
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
var Widget = require("$:/core/modules/new_widgets/widget.js").widget;
exports.button = Widget;
exports.linkcatcher = Widget;
exports.setstyle = Widget;
exports["import"] = Widget;
})();