diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-04-24 19:52:47 +0200 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-04-24 19:52:47 +0200 |
commit | 22de101e406c49697fee54a778f94d3535750342 (patch) | |
tree | db00d55bd0cb46e79fedc99786774a339dc72324 /demos/progressbar/download.html | |
parent | 7d0ca5e37dcf1b8dd1e201df2693e851da8ebb77 (diff) | |
download | jquery-ui-22de101e406c49697fee54a778f94d3535750342.tar.gz jquery-ui-22de101e406c49697fee54a778f94d3535750342.zip |
Progressbar demo: Speed up the progress a bit to make them less annoying
Diffstat (limited to 'demos/progressbar/download.html')
-rw-r--r-- | demos/progressbar/download.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/progressbar/download.html b/demos/progressbar/download.html index bb42ca91e..c35d47333 100644 --- a/demos/progressbar/download.html +++ b/demos/progressbar/download.html @@ -69,7 +69,7 @@ progressbar.progressbar( "value", val + Math.floor( Math.random() * 3 ) ); if ( val <= 99 ) { - progressTimer = setTimeout( progress, 100 ); + progressTimer = setTimeout( progress, 50 ); } } |