1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-09-19 06:39:10 +00:00

extend filter

This commit is contained in:
exane
2015-06-23 15:00:49 +02:00
parent aec5bd5d02
commit eb767ac0bb
2 changed files with 34 additions and 5 deletions

View File

@@ -586,6 +586,18 @@ Battleside = (function(){
res.push(card);
}
}
else if(_.isArray(val)) {
var _f = false;
for(var i = 0; i < val.length; i++) {
if(property === val[i]){
_f = true;
break;
}
}
if(!_f){
res.push(card);
}
}
else if(card.getProperty(prop) !== val){
res.push(card);
}