Ticket #1370 (closed enhancement: wontfix)
prevent default action
| Reported by: | yangjh02@… | Owned by: | stefan |
|---|---|---|---|
| Priority: | trivial | Milestone: | 1.1.4 |
| Component: | interface | Version: | 1.1.3 |
| Keywords: | Cc: | ||
| Needs: | Review |
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.
Change History
Note: See
TracTickets for help on using
tickets.
