Team:UCL/Template:MainJS

From 2014.igem.org

( function( $ ) {

function enableSkrollr(){ console.log('we are on desktop');

var s = skrollr.init({ forceHeight: false });

}

function disableSkrollr(){ console.log('we are on mobile');

var s = skrollr.init(); s.destroy(); }

enquire.register("screen and (min-width: 768px)", { match : function() { enableSkrollr(); }, unmatch : function() { disableSkrollr(); } });

} )( jQuery );