doing stopPropgatation, preventDefault on the events

This commit is contained in:
Danny Yoo 2012-06-24 20:33:11 -04:00
parent 202436383d
commit dda7a186e1

View File

@ -1148,6 +1148,8 @@
if (element !== undefined) {
fireEvent(element, objectToEvent(evt));
}
evt.stopPropagation();
evt.preventDefault();
};
$(element).bind(this.type, this.handler);
k();