Skip to content

Commit

Permalink
Merge pull request #94 from Buntix/master
Browse files Browse the repository at this point in the history
Fix for issue #93 which caused the library to break in older versions of IE.
  • Loading branch information
arturadib committed Dec 24, 2012
2 parents cd02e02 + ac5cba9 commit 2a2a2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agility.js
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@
var events = eventStr.split(';');
var handler = object.controller[eventStr];
$.each(events, function(i, ev){
ev = ev.trim();
ev = $.trim(ev);
bindEvent(ev, handler);
});
}
Expand Down

0 comments on commit 2a2a2c9

Please sign in to comment.