Team:UCL/Template:MainJS
From 2014.igem.org
(Difference between revisions)
Lewismoffat (Talk | contribs) |
Lewismoffat (Talk | contribs) |
||
Line 1: | Line 1: | ||
- | |||
( function( $ ) { | ( function( $ ) { | ||
Line 29: | Line 28: | ||
} )( jQuery ); | } )( jQuery ); | ||
- | |||
- | |||
- |
Latest revision as of 20:47, 4 August 2014
( 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 );