HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/Velosophe/carparkcannonball.cc/wwwroot/source/scripts/mobile.js
(function($) {

    /*------------------------------------------------------------------------*/
    /*  Document ready
    /*------------------------------------------------------------------------*/

    $( document ).ready( function() {

        console.log( 'Init mobile' );

        FastClick.attach(document.body); // Init fastclick for touch

        rodeskDefaults.init(); // Init all default functions

        rodeskSmoothScroll.init( '.js-smooth-scroll' ); // Init smoothscroll plugin

        rodeskMenu.init(); // Init menu

        rodeskVideo.init(); // Init video module

        // Init matchHeight plugin
        var matchHeightElements = ['.js-match-height'];
        rodeskDefaults.matchHeight( matchHeightElements );

    });

    /*------------------------------------------------------------------------*/
    /*  Resize events
    /*------------------------------------------------------------------------*/

    // Do the window resize with a debounce
    // All your resize related bindings here
    $(window).on( 'resize', $.debounce( 100, function() {

    }));

    /*------------------------------------------------------------------------*/
    /*  Scroll events
    /*------------------------------------------------------------------------*/

    // Do the scroll events resize with a throttle
    // All your scroll related bindings here
    $(window).on( 'scroll', $.throttle( 100, function() {

    }));

})(jQuery); // Fully reference jQuery after this point.