1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-17 17:59:45 +00:00
TiddlyWiki5/core/modules/new_widgets/tempwidgets.js

22 lines
389 B
JavaScript
Raw Normal View History

/*\
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.setstyle = Widget;
exports["import"] = Widget;
})();