We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Default behavior of the a tag used for month is not suppressed after upgrade.
Affected part in jquery ui seems to be: ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ).apply( matched.elem, args );
if ( ret !== undefined ) { if ( (event.result = ret) === false ) { event.preventDefault(); event.stopPropagation(); } }
Those two functions runs in 0.7.4 but not in 0.7.5.
You can see in this fiddle that sammys routing is triggered by month switching in 0.7.5. http://jsfiddle.net/tj5bhxLm/#hello
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Default behavior of the a tag used for month is not suppressed after upgrade.
Affected part in jquery ui seems to be:
ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ).apply( matched.elem, args );
if ( ret !== undefined ) {
if ( (event.result = ret) === false ) {
event.preventDefault();
event.stopPropagation();
}
}
Those two functions runs in 0.7.4 but not in 0.7.5.
You can see in this fiddle that sammys routing is triggered by month switching in 0.7.5.
http://jsfiddle.net/tj5bhxLm/#hello
The text was updated successfully, but these errors were encountered: