D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
skdesign
/
public_html
/
js
/
Filename :
config-progressbar.js
back
Copy
(function ($) { 'use strict'; /*[ Progress Bar ] ===========================================================*/ try { var progressbarSimple = $('.js-progressbar-simple'); progressbarSimple.each(function () { var that = $(this); var executed = false; $(window).on('load', function () { that.waypoint(function () { if (!executed) { executed = true; /*progress bar*/ that.progressbar({ update: function (current_percentage, $this) { $this.parent().find('.js-value').html(current_percentage + '%'); } }); } }, {offset: 'bottom-in-view'}); }) }); } catch (err) { console.log(err); } })(jQuery);