mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-15 03:35:40 +00:00
22 lines
389 B
JavaScript
22 lines
389 B
JavaScript
|
/*\
|
||
|
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;
|
||
|
|
||
|
})();
|