Skip to content

Commit

Permalink
IE8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Apr 4, 2014
1 parent ea41bf4 commit 08384cc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions framework/Core/js/prototype.js
Expand Up @@ -2819,8 +2819,7 @@ Ajax.PeriodicalUpdater = Class.create(Ajax.Base, {
var checkbox = document.createElement('<input type="checkbox">');
checkbox.checked = true;
var node = checkbox.getAttributeNode('checked');
var buggy = !node.specified;
return !node.specified;
return !node || !node.specified;
})();

function hasAttribute(element, attribute) {
Expand Down

0 comments on commit 08384cc

Please sign in to comment.