/*\ title: $:/core/modules/filters/tags.js type: application/javascript module-type: filteroperator Filter operator returning all the tags of the selected tiddlers \*/ (function(){ /*jslint node: true, browser: true */ /*global $tw: false */ "use strict"; /* Export our filter function */ exports.tags = function(source,operator,options) { var results = []; // Function to check an individual title function checkTiddler(title) { var tiddler = options.wiki.getTiddler(title); if(tiddler && tiddler.fields.tags) { $tw.utils.pushTop(results,tiddler.fields.tags); } } // Iterate through the source tiddlers if($tw.utils.isArray(source)) { $tw.utils.each(source,function(title) { checkTiddler(title); }); } else { $tw.utils.each(source,function(element,title) { checkTiddler(title); }); } return results; }; })();