mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-04 09:46:55 +00:00
using variable declaration for readability
This commit is contained in:
parent
baca2703f1
commit
f9464dfaf8
@ -22,12 +22,12 @@ exports.each = function(source,operator,options) {
|
||||
list = "list" === operator.suffix;
|
||||
source(function(tiddler,title) {
|
||||
if(tiddler) {
|
||||
var value,
|
||||
field = operator.operand || "title";
|
||||
var field = operator.operand || "title",
|
||||
value = list ?
|
||||
options.wiki.getTiddlerList(title,field) :
|
||||
[ "title" === field ? title : tiddler.getFieldString(operator.operand)];
|
||||
$tw.utils.each(
|
||||
list ?
|
||||
options.wiki.getTiddlerList(title,field) :
|
||||
[ "title" === field ? title : tiddler.getFieldString(operator.operand)],
|
||||
value,
|
||||
function(value){
|
||||
if(!$tw.utils.hop(values,value)) {
|
||||
values[value] = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user