Added checks to triggerEvent for optional data and element verification. Uses $.apply() now, too.
This commit is contained in:
parent
b9e0b6ff37
commit
11e82e95b6
1 changed files with 4 additions and 3 deletions
7
jquery/jquery.js
vendored
7
jquery/jquery.js
vendored
|
@ -697,9 +697,10 @@ function removeEvent(element, type, handler) {
|
|||
}
|
||||
};
|
||||
|
||||
function triggerEvent(element,type) {
|
||||
if ( element["on" + type] )
|
||||
element["on" + type]({ type: type });
|
||||
function triggerEvent(element,type,data) {
|
||||
data = data || [{ type: type }];
|
||||
if ( element && element["on" + type] )
|
||||
$.apply( element, element["on" + type], data );
|
||||
}
|
||||
|
||||
function handleEvent(event) {
|
||||
|
|
Loading…
Reference in a new issue