Skip to content
This repository was archived by the owner on Mar 26, 2018. It is now read-only.

Commit 01cee4b

Browse files
committed
fix(app): components to bower_components
1 parent 64e5757 commit 01cee4b

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

app/index.js

+17-17
Original file line numberDiff line numberDiff line change
@@ -159,35 +159,35 @@ Generator.prototype.bootstrapJS = function bootstrapJS() {
159159

160160
// Wire Twitter Bootstrap plugins
161161
this.indexFile = this.appendScripts(this.indexFile, 'scripts/plugins.js', [
162-
'components/jquery/jquery.js',
163-
'components/bootstrap-sass/js/bootstrap-affix.js',
164-
'components/bootstrap-sass/js/bootstrap-alert.js',
165-
'components/bootstrap-sass/js/bootstrap-dropdown.js',
166-
'components/bootstrap-sass/js/bootstrap-tooltip.js',
167-
'components/bootstrap-sass/js/bootstrap-modal.js',
168-
'components/bootstrap-sass/js/bootstrap-transition.js',
169-
'components/bootstrap-sass/js/bootstrap-button.js',
170-
'components/bootstrap-sass/js/bootstrap-popover.js',
171-
'components/bootstrap-sass/js/bootstrap-typeahead.js',
172-
'components/bootstrap-sass/js/bootstrap-carousel.js',
173-
'components/bootstrap-sass/js/bootstrap-scrollspy.js',
174-
'components/bootstrap-sass/js/bootstrap-collapse.js',
175-
'components/bootstrap-sass/js/bootstrap-tab.js'
162+
'bower_components/jquery/jquery.js',
163+
'bower_components/bootstrap-sass/js/bootstrap-affix.js',
164+
'bower_components/bootstrap-sass/js/bootstrap-alert.js',
165+
'bower_components/bootstrap-sass/js/bootstrap-dropdown.js',
166+
'bower_components/bootstrap-sass/js/bootstrap-tooltip.js',
167+
'bower_components/bootstrap-sass/js/bootstrap-modal.js',
168+
'bower_components/bootstrap-sass/js/bootstrap-transition.js',
169+
'bower_components/bootstrap-sass/js/bootstrap-button.js',
170+
'bower_components/bootstrap-sass/js/bootstrap-popover.js',
171+
'bower_components/bootstrap-sass/js/bootstrap-typeahead.js',
172+
'bower_components/bootstrap-sass/js/bootstrap-carousel.js',
173+
'bower_components/bootstrap-sass/js/bootstrap-scrollspy.js',
174+
'bower_components/bootstrap-sass/js/bootstrap-collapse.js',
175+
'bower_components/bootstrap-sass/js/bootstrap-tab.js'
176176
]);
177177
};
178178

179179
Generator.prototype.extraModules = function extraModules() {
180180
var modules = [];
181181
if (this.resourceModule) {
182-
modules.push('components/angular-resource/angular-resource.js');
182+
modules.push('bower_components/angular-resource/angular-resource.js');
183183
}
184184

185185
if (this.cookiesModule) {
186-
modules.push('components/angular-cookies/angular-cookies.js');
186+
modules.push('bower_components/angular-cookies/angular-cookies.js');
187187
}
188188

189189
if (this.sanitizeModule) {
190-
modules.push('components/angular-sanitize/angular-sanitize.js');
190+
modules.push('bower_components/angular-sanitize/angular-sanitize.js');
191191
}
192192

193193
if (modules.length) {

0 commit comments

Comments
 (0)