Skip to content

Commit

Permalink
#1096 : Fixed issue with animation.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellwest committed Feb 5, 2019
1 parent 030fe69 commit ef3b265
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@
if (progressBar.length > 0) {
progressBar.progressbar({ value: 1 });
setTimeout(function() {
if (!animate) {
clearInterval(interval);
}
progressBar.progressbar("option", "value", false);
progressBar.addClass("ui-progressbar-indeterminate");
progressBar.addClass("ui-progressbar-indeterminate");
}, 2000);
}
$("#Copyright").each(function () { // Notice the .each() loop, discussed below
Expand Down

0 comments on commit ef3b265

Please sign in to comment.