Enable ajax-bootstrap-select.

Requires some work as is currently not overly happy
This commit is contained in:
Tom Price
2016-08-09 15:46:08 +01:00
parent b194feb36b
commit d051f230dc
6 changed files with 18 additions and 17 deletions

View File

@@ -5,6 +5,12 @@ var EmberApp = require('ember-cli/lib/broccoli/ember-app');
module.exports = function (defaults) {
var app = new EmberApp(defaults, {
// Add options here
sassOptions: {
includePaths: [
'bower_components/bootstrap-select/sass',
],
},
});
// Use `app.import` to add additional libraries to the generated
@@ -20,5 +26,8 @@ module.exports = function (defaults) {
// please specify an object with the list of modules as keys
// along with the exports of each module as its value.
app.import('bower_components/bootstrap-select/dist/js/bootstrap-select.js');
app.import('bower_components/ajax-bootstrap-select/dist/js/ajax-bootstrap-select.js');
return app.toTree();
};