Progressbar: Define defaults for callbacks.

This commit is contained in:
Scott González 2012-12-06 09:21:25 -05:00
parent 1e5662ebe5
commit 8c763cdf98
2 changed files with 6 additions and 1 deletions

View File

@ -5,6 +5,8 @@ TestHelpers.commonWidgetTests( "progressbar", {
max: 100,
//callbacks
change: null,
complete: null,
create: null
}
});

View File

@ -17,8 +17,11 @@
$.widget( "ui.progressbar", {
version: "@VERSION",
options: {
max: 100,
value: 0,
max: 100
change: null,
complete: null
},
min: 0,