1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-30 17:23:16 +00:00
TiddlyWiki5/core/modules/filters/fields.js

31 lines
557 B
JavaScript
Raw Normal View History

2013-08-15 17:15:54 +00:00
/*\
title: $:/core/modules/filters/fields.js
type: application/javascript
module-type: filteroperator
Filter operator for returning the names of the fields on the selected tiddlers
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
/*
Export our filter function
*/
exports.fields = function(source,operator,options) {
var results = [];
source(function(tiddler,title) {
if(tiddler) {
for(var fieldName in tiddler.fields) {
$tw.utils.pushTop(results,fieldName);
}
2013-08-15 17:15:54 +00:00
}
});
2013-08-15 17:15:54 +00:00
return results;
};
})();