Current File : /home/kelaby89/iluxelectrical.com.au/wp-content/themes/strnix/framework/scripts/index.php |
<?php
class strnix_Scripts {
public function __construct() {
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
}
public function enqueue_scripts() {
wp_enqueue_script( 'jquery', STRNIX_JS_URL . 'jquery.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'popper', STRNIX_JS_URL . 'popper.min.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'bootstrap', STRNIX_JS_URL . 'bootstrap.min.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'jquery-ui', STRNIX_JS_URL . 'jquery-ui.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'jquery-fancybox', STRNIX_JS_URL . 'jquery.fancybox.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'owl-carousel', STRNIX_JS_URL . 'owl.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'appear', STRNIX_JS_URL . 'appear.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'wow', STRNIX_JS_URL . 'wow.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'scrollbar', STRNIX_JS_URL . 'scrollbar.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'validate', STRNIX_JS_URL . 'validate.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'paroller', STRNIX_JS_URL . 'paroller.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'isotope', STRNIX_JS_URL . 'isotope.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'mixitup', STRNIX_JS_URL . 'mixitup.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'element-in-view', STRNIX_JS_URL . 'element-in-view.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'strnix-scripts', STRNIX_JS_URL . 'custom-script.js', array( 'jquery' ), '', true );
}
}
$strnix_scripts = new strnix_Scripts();