Merge branch 'master' of git@github.com:gallery/gallery3

This commit is contained in:
Tim Almdal
2009-07-28 20:49:50 -07:00
30 changed files with 301 additions and 588 deletions

View File

@@ -10,6 +10,9 @@
if (target_value - current_value > delta) {
delta += .075;
}
if (target_value == 100) {
new_value = 100;
}
$(".gProgressBar").progressbar("value", new_value);
animation = setTimeout(function() { animate_progress_bar(target_value); }, 100);
} else {