jshint compliance

This commit is contained in:
ansuz
2017-02-24 18:23:43 +01:00
parent 42b6cca18d
commit cc829d51f8
3 changed files with 25 additions and 21 deletions

View File

@@ -404,7 +404,7 @@ define([
var toHide = filterContextMenu($menu, $element);
$actions = $actions.filter(function (i, el) {
for (var j = 0; j < toHide.length; j++) {
if ($(el).is(toHide[j])) { return false; };
if ($(el).is(toHide[j])) { return false; }
}
return true;
});