Skip to content

Instantly share code, notes, and snippets.

@mjpearson
Last active December 14, 2015 20:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjpearson/5146986 to your computer and use it in GitHub Desktop.
Save mjpearson/5146986 to your computer and use it in GitHub Desktop.
foundation.js shim into requirejs example
require.config({
baseUrl : "/static/js",
paths: {
jquery: 'vendor/jquery-bundle-min',
foundation : 'vendor/foundation.min'
},
shim : {
foundation : {
deps : ["jquery" ],
exports : "jQuery.fn.foundation"
}
}
});
require(['foundation'], function(foundation) {
$(document).foundation();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment