crafty-4/app/frontend/static/assets/js/shared/circle-progress.js

8 lines
310 B
JavaScript
Raw Normal View History

2020-08-12 00:36:09 +00:00
(function($) {
'use strict';
if ($(".circle-progress-1").length) {
$('.circle-progress-1').circleProgress({}).on('circle-animation-progress', function(event, progress, stepValue) {
$(this).find('.value').html(Math.round(100 * stepValue.toFixed(2).substr(1)) + '<i>%</i>');
});
}
})(jQuery);