select2 ember-cli-build

This commit is contained in:
Matthew Dillon 2015-11-13 17:00:10 -07:00
parent d05c31cc94
commit 41e79b6890

View file

@ -14,6 +14,8 @@ module.exports = function(defaults) {
// quill // quill
app.import('bower_components/quill/dist/quill.base.css'); app.import('bower_components/quill/dist/quill.base.css');
app.import('bower_components/quill/dist/quill.snow.css'); app.import('bower_components/quill/dist/quill.snow.css');
// select2
app.import('bower_components/select2/select2.css');
// LIBS //////////////////////////////////////////////////////////////////////// // LIBS ////////////////////////////////////////////////////////////////////////
// flakes (and deps) // flakes (and deps)
@ -25,6 +27,14 @@ module.exports = function(defaults) {
app.import('bower_components/moment/moment.js'); app.import('bower_components/moment/moment.js');
// quill // quill
app.import('bower_components/quill/dist/quill.min.js'); app.import('bower_components/quill/dist/quill.min.js');
// select2
app.import('bower_components/select2/select2.min.js');
// MISC ////////////////////////////////////////////////////////////////////////
// select2
app.import('bower_components/select2/select2.png', { destDir: 'assets' });
app.import('bower_components/select2/select2x2.png', { destDir: 'assets' });
app.import('bower_components/select2/select2-spinner.gif', { destDir: 'assets' });
return app.toTree(); return app.toTree();
}; };