aethermx/ember-cli-bootstrap-tokenfield

View on GitHub
index.js

Summary

Maintainability
A
0 mins
Test Coverage
/* jshint node: true */
'use strict';

module.exports = {
  included: function(app) {
    this._super.included(app);

    // Bootstrap
    app.import('bower_components/bootstrap/dist/css/bootstrap.css');

    // JQuery UI
    app.import('bower_components/jquery-ui/jquery-ui.js');
    app.import('bower_components/jquery-ui/themes/base/jquery-ui.css');

    // Bootstrap Tokenfield 
    app.import('bower_components/bootstrap-tokenfield/dist/css/tokenfield-typeahead.css');
    app.import('bower_components/bootstrap-tokenfield/dist/css/bootstrap-tokenfield.css');
    app.import('bower_components/bootstrap-tokenfield/dist/bootstrap-tokenfield.js');
  },

  name: 'ember-cli-bootstrap-tokenfield'
};