aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/progressbar/progressbar_events.js
blob: b273cd5e99427f6add8d5eee1f122142280f87d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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);