mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 12:07:19 +00:00
Added intersection filter run prefix (#4959)
This commit is contained in:
parent
26ade60e93
commit
e9a635dc81
30
core/modules/filterrunprefixes/intersection.js
Normal file
30
core/modules/filterrunprefixes/intersection.js
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
/*\
|
||||||
|
title: $:/core/modules/filterrunprefixes/intersection.js
|
||||||
|
type: application/javascript
|
||||||
|
module-type: filterrunprefix
|
||||||
|
|
||||||
|
\*/
|
||||||
|
(function(){
|
||||||
|
|
||||||
|
/*jslint node: true, browser: true */
|
||||||
|
/*global $tw: false */
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
/*
|
||||||
|
Export our filter prefix function
|
||||||
|
*/
|
||||||
|
exports.intersection = function(operationSubFunction) {
|
||||||
|
return function(results,source,widget) {
|
||||||
|
if(results.length !== 0) {
|
||||||
|
var secondRunResults = operationSubFunction(source,widget);
|
||||||
|
var firstRunResults = results.splice(0);
|
||||||
|
$tw.utils.each(firstRunResults,function(title) {
|
||||||
|
if(secondRunResults.indexOf(title) !== -1) {
|
||||||
|
results.push(title);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
})();
|
Loading…
Reference in New Issue
Block a user