1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-07 20:44:23 +00:00
TiddlyWiki5/core/modules/filters/tags.js

29 lines
523 B
JavaScript
Raw Normal View History

/*\
title: $:/core/modules/filters/tags.js
type: application/javascript
module-type: filteroperator
2013-08-07 15:04:06 +00:00
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 = [];
source(function(tiddler,title) {
if(tiddler && tiddler.fields.tags) {
$tw.utils.pushTop(results,tiddler.fields.tags);
}
});
return results;
};
})();