Team:UCL/Template:MainJS
From 2014.igem.org
Revision as of 20:47, 4 August 2014 by Lewismoffat (Talk | contribs)
( 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 );