Make sure that the beforeactivate event isn't accidentally prevented.
This commit is contained in:
parent
03481a52c7
commit
209751fcbd
1 changed files with 1 additions and 1 deletions
|
@ -690,7 +690,7 @@ jQuery.event.special.change = {
|
||||||
var elem = e.target;
|
var elem = e.target;
|
||||||
|
|
||||||
if ( elem.nodeName.toLowerCase() === "input" && elem.type === "radio" ) {
|
if ( elem.nodeName.toLowerCase() === "input" && elem.type === "radio" ) {
|
||||||
return jQuery.data( elem, "_change_data", getVal(elem) );
|
jQuery.data( elem, "_change_data", getVal(elem) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue