mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 10:06:19 +00:00
18 lines
354 B
JavaScript
18 lines
354 B
JavaScript
|
/*\
|
||
|
title: $:/plugins/tiddlywiki/innerwiki/anchor.js
|
||
|
type: application/javascript
|
||
|
module-type: widget
|
||
|
|
||
|
Anchor widget to represent an innerwiki graphical anchor. Clone of the data widget
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
exports.anchor = require("$:/core/modules/widgets/data.js").data;
|
||
|
|
||
|
})();
|