More lazy sunday cleanups of missing semicolons, unused vars and other small thins

This commit is contained in:
Veeck 2017-06-11 11:53:55 +02:00
parent a2464dce73
commit 96c338859b
5 changed files with 10 additions and 15 deletions

View file

@ -165,8 +165,6 @@ var MM = (function() {
if( headerWrapper.length > 0 && newHeader) {
headerWrapper[0].innerHTML = newHeader;
}
};
/* hideModule(module, speed, callback)
@ -219,7 +217,7 @@ var MM = (function() {
// remove lockString if set in options.
if (options.lockString) {
var index = module.lockStrings.indexOf(options.lockString)
var index = module.lockStrings.indexOf(options.lockString);
if ( index !== -1) {
module.lockStrings.splice(index, 1);
}