mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-04 09:06:18 +00:00
20 lines
332 B
JavaScript
20 lines
332 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["import"] = Widget;
|
||
|
|
||
|
})();
|