mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 02:49:56 +00:00
f576c86b41
Updated the slider macro to use the new mechanism to start with
44 lines
1010 B
JavaScript
44 lines
1010 B
JavaScript
/*\
|
|
title: js/macros/slider.js
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true */
|
|
"use strict";
|
|
|
|
var utils = require("../Utils.js");
|
|
|
|
exports.macro = {
|
|
name: "slider",
|
|
types: ["text/html","text/plain"],
|
|
params: {
|
|
name: {byPos: 0, type: "text", optional: false},
|
|
targetTiddler: {byPos: 1, type: "tiddler", optional: false},
|
|
label: {byPos: 2, type: "text", optional: false},
|
|
tooltip: {byPos: 3, type: "text", optional: true}
|
|
},
|
|
events: {
|
|
click: function(event,node,tiddler,store,params) {
|
|
var el = node.firstChild.firstChild.nextSibling;
|
|
el.style.display = el.style.display === "block" ? "none" : "block";
|
|
event.preventDefault();
|
|
return false;
|
|
}
|
|
},
|
|
render: function(type,tiddler,store,params) {
|
|
if(type === "text/html") {
|
|
return utils.stitchSlider(type,
|
|
params.label,
|
|
params.tooltip,
|
|
store.renderTiddler(type,params.targetTiddler));
|
|
} else if(type === "text/plain") {
|
|
return store.renderTiddler(type,params.target);
|
|
}
|
|
return null;
|
|
}
|
|
};
|
|
|
|
})();
|
|
|