/home/hdwebsolution/www/ns-interior/admin-pages/src/js/sugarrush.buttons.js
jQuery(document).ready(function() {

    ///////////////////////////
    // PROGRESS BUTTONS ///////
    ///////////////////////////
    [].slice.call( document.querySelectorAll( 'button.progress-button' ) ).forEach( function( bttn ) {
        new ProgressButton( bttn, {
            callback : function( instance ) {
                var progress = 0,
                interval = setInterval( function() {
                    progress = Math.min( progress + Math.random() * 0.1, 1 );
                    instance._setProgress( progress );

                    if( progress === 1 ) {
                        instance._stop(1);
                        clearInterval( interval );
                    }
                }, 200 );
            }
        } );
    } );

});