Fix javascript

This commit is contained in:
Possum 2015-04-10 08:59:04 +02:00
parent faaa4fe3e6
commit df76126d47
3 changed files with 5 additions and 7 deletions

View File

@ -103,13 +103,13 @@
return dict.hasOwnProperty(key)
? dict[key]
: null;
}
};
this.set = function(key, value) {
dict[key] = value;
return value;
}
};
};
/**
@ -383,7 +383,7 @@
return this;
};
};
}
function canvasAutoUpdateOnResizeAndSubmit(e) {
e.preventDefault();

View File

@ -98,9 +98,7 @@
},
toggle: function(selector, elOn, elOff) {
var i,
style,
tmp = elOn.style.display,
var tmp = elOn.style.display,
el = document.getElementById(selector);
elOn.style.display = elOff.style.display;

View File

@ -121,7 +121,7 @@
for (elem in menuItems) {
if (typeof(menuItems[elem].children) !== 'undefined' &&
menuItems[elem].children.length > 0) {
child = menuItems[elem].children[0]
child = menuItems[elem].children[0];
if ('' === child.getAttribute('title') ||
null === child.getAttribute('title')) {