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) return dict.hasOwnProperty(key)
? dict[key] ? dict[key]
: null; : null;
} };
this.set = function(key, value) { this.set = function(key, value) {
dict[key] = value; dict[key] = value;
return value; return value;
} };
}; };
/** /**
@ -383,7 +383,7 @@
return this; return this;
}; };
}; }
function canvasAutoUpdateOnResizeAndSubmit(e) { function canvasAutoUpdateOnResizeAndSubmit(e) {
e.preventDefault(); e.preventDefault();

View File

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

View File

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