mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 02:49:56 +00:00
16 lines
199 B
JavaScript
16 lines
199 B
JavaScript
|
/*\
|
||
|
title: $:/tiddlywiki/plugins/demoplugin/demoplugin.js
|
||
|
type: application/javascript
|
||
|
module-type: demo
|
||
|
|
||
|
A demo plugin
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
"use strict";
|
||
|
|
||
|
|
||
|
})();
|