mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Tests: Prevent default on anchor click to avoid navigation
This commit is contained in:
parent
b58ad12a68
commit
e310d9f160
@ -9,7 +9,8 @@ asyncTest( "Anchor recieves click event when spacebar is pressed", function() {
|
||||
expect( 1 );
|
||||
var element = $( "#anchor-button" ).button();
|
||||
|
||||
element.on( "click", function() {
|
||||
element.on( "click", function( event ) {
|
||||
event.preventDefault();
|
||||
ok( true, "click occcured as a result of spacebar" );
|
||||
start();
|
||||
} );
|
||||
|
Loading…
Reference in New Issue
Block a user