Skip to content

Instantly share code, notes, and snippets.

@kannans
Last active August 29, 2015 14:06
Show Gist options
  • Save kannans/f730f0c3aab9046da05d to your computer and use it in GitHub Desktop.
Save kannans/f730f0c3aab9046da05d to your computer and use it in GitHub Desktop.
Install foudnation in your ember client application
In your app directory
npm install ember-cli-foundation-sass --save-dev
ember g foundation-sass
//In Brokfile.js add this
var app = new EmberApp({
'foundation-sass': {
'modernizr': true, //includes modernizer
'fastclick': true, //includes fastclick
'foundationJs': 'all' //Includes the full foundation.js with all modules
}
});
var app = new EmberApp({
'foundation-sass': {
'foundationJs': true //Includes just the core foundation.js without any modules
}
});
var app = new EmberApp({
'foundation-sass': {
'foundationJs': ['tab', 'topbar', 'orbit', 'drodpdown']
//Includes just the core foundation.js with the tab, topbar, orbut and dropdown module
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment