Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leefish/9663546 to your computer and use it in GitHub Desktop.
Save leefish/9663546 to your computer and use it in GitHub Desktop.
<!-- 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