mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-04-20 03:02:41 -04:00
Tests: Prevent default on anchor click to avoid navigation
This commit is contained in:
committed by
Alexander Schmitz
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();
|
||||
} );
|
||||
|
||||
Reference in New Issue
Block a user