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