mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
44 lines
937 B
JavaScript
44 lines
937 B
JavaScript
module( "progressbar: events" );
|
||
|
||
test( "create", function() {
|
||
expect( 1 );
|
||
$( "#progressbar" ).progressbar({
|
||
value: 5,
|
||
create: function() {
|
||
deepEqual( 5, $( this ).progressbar( "value" ) );
|
||
},
|
||
change: function() {
|
||
ok( false, "create() has triggered change()" );
|
||
}
|
||
});
|
||
});
|
||
|
||
test( "change", function() {
|
||
expect( 1 );
|
||
$( "#progressbar" ).progressbar({
|
||
change: function() {
|
||
deepEqual( 5, $( this ).progressbar( "value" ) );
|
||
}
|
||
}).progressbar( "value", 5 );
|
||
});
|
||
|
||
test( "complete", function() {
|
||
expect( 3 );
|
||
var value,
|
||
changes = 0,
|
||
element = $( "#progressbar" ).progressbar({
|
||
change: function() {
|
||
changes++;
|
||
deepEqual( element.progressbar( "value" ), value, "change at " + value );
|
||
},
|
||
complete: function() {
|
||
equal( changes, 2, "complete triggered after change" );
|
||
}
|
||
});
|
||
|
||
value = 5;
|
||
element.progressbar( "value", value );
|
||
value = 100;
|
||
element.progressbar( "value", value );
|
||
});
|