mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
02033262ee
Move to using element stats rather then js class states remove ui-button-text spans. Removed button set
21 lines
426 B
JavaScript
21 lines
426 B
JavaScript
define( [
|
|
"jquery",
|
|
"ui/widgets/button"
|
|
], function( $ ) {
|
|
|
|
module( "Button: events" );
|
|
|
|
asyncTest( "Anchor recieves click event when spacebar is pressed", function() {
|
|
expect( 1 );
|
|
var element = $( "#anchor-button" ).button();
|
|
|
|
element.on( "click", function() {
|
|
ok( true, "click occcured as a result of spacebar" );
|
|
start();
|
|
} );
|
|
|
|
element.trigger( $.Event( "keyup", { keyCode: $.ui.keyCode.SPACE } ) );
|
|
} );
|
|
|
|
} );
|