diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-12-06 09:21:25 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-12-06 09:21:25 -0500 |
commit | 8c763cdf9836e9e97432167e92d0a5808e033ba2 (patch) | |
tree | 49bbcad0cc398b31a7a6371b4d5bf10d34cebfad /ui/jquery.ui.progressbar.js | |
parent | 1e5662ebe5a27d5ef0b8d60730b21771a2526547 (diff) | |
download | jquery-ui-8c763cdf9836e9e97432167e92d0a5808e033ba2.tar.gz jquery-ui-8c763cdf9836e9e97432167e92d0a5808e033ba2.zip |
Progressbar: Define defaults for callbacks.
Diffstat (limited to 'ui/jquery.ui.progressbar.js')
-rw-r--r-- | ui/jquery.ui.progressbar.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/jquery.ui.progressbar.js b/ui/jquery.ui.progressbar.js index 0f97bc3fe..53c9508ed 100644 --- a/ui/jquery.ui.progressbar.js +++ b/ui/jquery.ui.progressbar.js @@ -17,8 +17,11 @@ $.widget( "ui.progressbar", { version: "@VERSION", options: { + max: 100, value: 0, - max: 100 + + change: null, + complete: null }, min: 0, |