Skip to content

Instantly share code, notes, and snippets.

$small-range: (0em, 40em);
$medium-range: (40.063em, 64em);
$large-range: (64.063em, 90em);
$xlarge-range: (90.063em, 120em);
$xxlarge-range: (120.063em, 99999999em);
@codelittle
codelittle / app.js
Created June 17, 2014 09:12
app.js needs to become this
$(document).ready(function() {
$(document).foundation();
});
$(document).ready(function() {
// Transform any element that has data-url into a link
$('[data-url]').click(function () {
window.location = $(this).attr('data-url')
});
});