Skip to content
This repository has been archived by the owner on Nov 10, 2018. It is now read-only.

Commit

Permalink
Merge pull request 3n#2 from takeo/master
Browse files Browse the repository at this point in the history
fixed missing paren
  • Loading branch information
3n committed Oct 19, 2011
2 parents f904c1c + 9d3f194 commit 0d9a3aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ValidateSimple.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ Element.implement({
addFocusedProperty: function(){
this.store('focused', false);
this.addEvent('focus', (function(){ this.store('focused', true); }).bind(this));
this.addEvent('blur', (function(){ this.store.delay(500, this, ['focused', false]); });
this.addEvent('blur', (function(){ this.store.delay(500, this, ['focused', false]); }));
}
});

Expand Down

0 comments on commit 0d9a3aa

Please sign in to comment.