Forked from nternetinspired/Modernizr conditional loading
Created
March 20, 2014 13:20
-
-
Save leefish/9663546 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Something like this --> | |
<script> | |
Modernizr.load({ | |
test: Modernizr.mq('(min-width:400px)'), | |
yep: '<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/not-small-screen-stuff.js">', | |
}); | |
</script> | |
<!-- Or --> | |
<script> | |
Modernizr.load({ | |
test: Modernizr.mq('(min-width:1024px)'), | |
yep: '<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/big-screen.css">', | |
nope: '<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/small-screen.css">', | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment