Opened 16 years ago
Closed 15 years ago
#1370 closed enhancement (wontfix)
prevent default action
Reported by: | Owned by: | stefan | |
---|---|---|---|
Priority: | trivial | Milestone: | 1.1.4 |
Component: | interface | Version: | 1.1.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
In lots of plac of interface library, following code is used,
---quote---
if (window.event) {
window.event.cancelBubble = true; window.event.returnValue = false;
} else {
e.preventDefault(); e.stopPropagation();
}
return false;
--endquote----
I find that this is not necessary, because jquery already normalized the event object, just safely use e.preventDefault() and remove the the quoted code, it works in IE and firefox. This make the code cleaner.
Note: See
TracTickets for help on using
tickets.
Interface is no longer supported; consider switching to jQuery UI.