Last active
August 29, 2015 14:06
-
-
Save kannans/f730f0c3aab9046da05d to your computer and use it in GitHub Desktop.
Install foudnation in your ember client application
This file contains hidden or 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
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