mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
1f7164660e
Ref #14246 Ref gh-1588
37 lines
929 B
JavaScript
37 lines
929 B
JavaScript
define( [
|
|
"jquery",
|
|
"ui/widgets/button"
|
|
], function( $ ) {
|
|
|
|
module( "button: events" );
|
|
|
|
test( "buttonset works with single-quote named elements (#7505)", function() {
|
|
expect( 1 );
|
|
$( "#radio3" ).buttonset();
|
|
$( "#radio33" ).on( "click", function() {
|
|
ok( true, "button clicks work with single-quote named elements" );
|
|
} ).trigger( "click" );
|
|
} );
|
|
|
|
asyncTest( "when button loses focus, ensure active state is removed (#8559)", function( assert ) {
|
|
expect( 1 );
|
|
|
|
var element = $( "#button" ).button();
|
|
|
|
element.one( "keypress", function() {
|
|
element.one( "blur", function() {
|
|
assert.lacksClasses( element, "ui-state-active", "button loses active state appropriately" );
|
|
start();
|
|
} ).trigger( "blur" );
|
|
} );
|
|
|
|
element.trigger( "focus" );
|
|
setTimeout( function() {
|
|
element
|
|
.simulate( "keydown", { keyCode: $.ui.keyCode.ENTER } )
|
|
.simulate( "keypress", { keyCode: $.ui.keyCode.ENTER } );
|
|
} );
|
|
} );
|
|
|
|
} );
|