beCodeMyFriend / Cuore.js

Other
34 stars 13 forks source link

IE9 - Click is thrown twice for buttons #20

Closed hell03610 closed 12 years ago

hell03610 commented 12 years ago

Click listener is added twice, as in IE9 _isW3cListener and _isIEListener returns true in Cuore.Dom.Events

Changed _isIEListener to

  var _isIEListener = function(){

    if(_isW3cListener()) return false;

    return (typeof document.attachEvent === 'function' || typeof document.attachEvent === 'object');

 };