lint compliance

This commit is contained in:
yflory 2018-01-12 17:45:52 +01:00
parent 50eb803c95
commit 8ced81d8d7

View File

@ -377,7 +377,7 @@ define([
var isAvailableType = function (x) {
if (!Array.isArray(AppConfig.availablePadTypes)) { return true; }
return AppConfig.availablePadTypes.some(function (type, i) {
return AppConfig.availablePadTypes.some(function (type) {
return x.indexOf(type) > -1;
});
};