mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-05 17:46:19 +00:00
c4244e8f04
# Allow the slicer to be used as a command # Sort the document preview column
32 lines
701 B
JavaScript
32 lines
701 B
JavaScript
/*\
|
|
title: $:/plugins/tiddlywiki/text-slicer/modules/startup/slicer.js
|
|
type: application/javascript
|
|
module-type: startup
|
|
|
|
Setup the root widget event handlers
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
// Export name and synchronous status
|
|
exports.name = "slicer";
|
|
exports.platforms = ["browser"];
|
|
exports.after = ["startup"];
|
|
exports.synchronous = true;
|
|
|
|
// Install the root widget event handlers
|
|
exports.startup = function() {
|
|
$tw.rootWidget.addEventListener("tm-slice-tiddler",function(event) {
|
|
var slicer = new $tw.Slicer($tw.wiki,event.param);
|
|
slicer.sliceTiddler(event.param)
|
|
slicer.outputTiddlers();
|
|
slicer.destroy();
|
|
});
|
|
};
|
|
|
|
})();
|