1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-09 05:24:21 +00:00
TiddlyWiki5/core/modules/new_widgets/tempwidgets.js
Jeremy Ruston 933afee996 Get rid of the old setstyle widget
And fix up the colouring of tiddler icons
2013-10-15 08:36:19 +01:00

21 lines
362 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.linkcatcher = Widget;
exports["import"] = Widget;
})();