Current File : /home/natitnen/elitepathways.com.ng/wp-content/plugins/smoother/js/smoother-destroyer.js
/**
 * Smoother - Smoother - Smooth scrolling experience for WordPress Websites
 *
 * @encoding UTF-8
 * @version 2.0.3
 * @copyright Copyright (C) 2019 merkulove ( https://1.envato.market/cc-merkulove ). All rights reserved.
 * @license Commercial Software
 * @author merkulove
 * @url https://smoother.merkulov.design/
 **/

"use strict";

/** Disable on a certain page. Call SmoothScroll.destroy(); as early as possible. */
var SmootherDestroyer = setInterval( function(){ 
    if ( typeof SmoothScroll !== 'undefined' ) {
        SmoothScroll.destroy();
        clearInterval( SmootherDestroyer );
    }
}, 100 );