chore(jshint): correct warning

This commit is contained in:
Nico Rehwaldt 2014-05-05 09:18:46 +02:00
parent f09120af90
commit c3412235a4
1 changed files with 4 additions and 0 deletions

View File

@ -970,6 +970,10 @@ function BpmnRenderer(events, styles, bpmnRegistry, pathMap) {
function matches(definition, filter) { function matches(definition, filter) {
return _.all(filter, function(val, key) { return _.all(filter, function(val, key) {
// we want a == conversion here, to be able to catch
// undefined == false and friends
/* jshint -W116 */
return definition[key] == val; return definition[key] == val;
}); });
} }