mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-03-12 09:42:19 -07:00
17 lines
352 B
JavaScript
Executable file
17 lines
352 B
JavaScript
Executable file
/*\
|
|
title: $:/core/modules/widgets/void.js
|
|
type: application/javascript
|
|
module-type: widget
|
|
\*/
|
|
|
|
"use strict";
|
|
|
|
var Widget = require("$:/core/modules/widgets/widget.js").widget;
|
|
|
|
var VoidNodeWidget = function(parseTreeNode,options) {
|
|
this.initialise(parseTreeNode,options);
|
|
};
|
|
|
|
VoidNodeWidget.prototype = new Widget();
|
|
|
|
exports.void = VoidNodeWidget;
|