linted client-side core modules

v1.18.x
psychobunny 10 years ago
parent 241f5b0224
commit 26245133f3

@ -208,9 +208,11 @@ $(document).ready(function() {
ajaxify.getCustomTemplateMapping = function(tpl) {
if (templatesModule.config && templatesModule.config.custom_mapping && tpl !== undefined) {
for (var pattern in templatesModule.config.custom_mapping) {
var match = tpl.match(pattern);
if (match && match[0] === tpl) {
return (templatesModule.config.custom_mapping[pattern]);
if (templatesModule.config.custom_mapping.hasOwnProperty(pattern)) {
var match = tpl.match(pattern);
if (match && match[0] === tpl) {
return (templatesModule.config.custom_mapping[pattern]);
}
}
}
}

@ -1,5 +1,5 @@
"use strict";
/*global io, templates, translator, ajaxify, utils, bootbox, RELATIVE_PATH, config*/
/*global io, templates, translator, ajaxify, utils, bootbox, RELATIVE_PATH, config, Visibility*/
var socket,
app = app || {};
@ -366,7 +366,7 @@ app.cacheBuster = null;
}
}
});
}
};
function createHeaderTooltips() {
if (utils.findBootstrapEnvironment() === 'xs') {

Loading…
Cancel
Save