mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-07-03 10:32:50 +00:00
allbefore:include should be the identity function when applied to 1st item (#2842)
* fr-FR translation of additional error strings * allbefore:include should be the identity function when applied to the 1st item
This commit is contained in:
parent
847727146e
commit
a7b57d7f97
@ -106,7 +106,7 @@ Extended filter operators to manipulate the current list.
|
|||||||
exports.allbefore = function (source, operator) {
|
exports.allbefore = function (source, operator) {
|
||||||
var results = prepare_results(source),
|
var results = prepare_results(source),
|
||||||
index = results.indexOf(operator.operand);
|
index = results.indexOf(operator.operand);
|
||||||
return (index <= 0) ? [] :
|
return (index < 0) ? [] :
|
||||||
(operator.suffix) ? results.slice(0, index + 1) :
|
(operator.suffix) ? results.slice(0, index + 1) :
|
||||||
results.slice(0, index);
|
results.slice(0, index);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user