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.