ember-cli-fullpagejs-view
Version:
An integration of fullPage.js within Ember views
25 lines (19 loc) • 634 B
JavaScript
module.exports = {
description: 'ember-cli-fullpagejs-view',
normalizeEntityName: function() {
// this prevents an error when the entityName is
// not specified (since that doesn't actually matter
// to us
},
included: function(app) {
this._super.included(app);
app.import({
development: 'bower_components/fullpage.js/jquery.fullPage.js',
prod: 'bower_components/fullpage.js/jquery.fullPage.min.js',
});
app.import('bower_components/fullpage.js/jquery.fullPage.css');
},
afterInstall: function() {
return this.addBowerPackageToProject('fullpage.js', '2.5.9');
}
};