mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
18 lines
270 B
JavaScript
18 lines
270 B
JavaScript
/*
|
|
* progressbar_events.js
|
|
*/
|
|
(function($) {
|
|
|
|
module("progressbar: events");
|
|
|
|
test("change", function() {
|
|
expect(1);
|
|
$("#progressbar").progressbar({
|
|
change: function() {
|
|
same( 5, $(this).progressbar("value") );
|
|
}
|
|
}).progressbar("value", 5);
|
|
});
|
|
|
|
})(jQuery);
|