@@ -29,55 +29,55 @@ var questions = [
2929
3030var model = { } ;
3131
32- questions . forEach ( function ( question ) {
32+ questions . forEach ( function ( question ) {
3333 model [ question ] = {
3434 choices : _ . findWhere ( prompts , { name : question } ) . choices ,
3535 values : { }
3636 } ;
3737} ) ;
3838
39- model . angularVersion . choices . forEach ( function ( choice ) {
39+ model . angularVersion . choices . forEach ( function ( choice ) {
4040 var title = choice . name . substring ( 0 , 3 ) ;
4141 model . angularVersion . values [ title ] = choice . value ;
4242} ) ;
4343
44- model . angularModules . choices . forEach ( function ( choice ) {
44+ model . angularModules . choices . forEach ( function ( choice ) {
4545 model . angularModules . values [ choice . value . name ] = choice . value ;
4646} ) ;
4747
48- model . jQuery . choices . forEach ( function ( choice ) {
48+ model . jQuery . choices . forEach ( function ( choice ) {
4949 model . jQuery . values [ choice . value . key ] = choice . value ;
5050} ) ;
5151
52- model . resource . choices . forEach ( function ( choice ) {
52+ model . resource . choices . forEach ( function ( choice ) {
5353 model . resource . values [ choice . value . key ] = choice . value ;
5454} ) ;
5555
56- model . router . choices . forEach ( function ( choice ) {
56+ model . router . choices . forEach ( function ( choice ) {
5757 model . router . values [ choice . value . key ] = choice . value ;
5858} ) ;
5959
60- model . ui . choices . forEach ( function ( choice ) {
60+ model . ui . choices . forEach ( function ( choice ) {
6161 model . ui . values [ choice . value . key ] = choice . value ;
6262} ) ;
6363
64- model . bootstrapComponents . choices . forEach ( function ( choice ) {
64+ model . bootstrapComponents . choices . forEach ( function ( choice ) {
6565 model . bootstrapComponents . values [ choice . value . key ] = choice . value ;
6666} ) ;
6767
68- model . foundationComponents . choices . forEach ( function ( choice ) {
68+ model . foundationComponents . choices . forEach ( function ( choice ) {
6969 model . foundationComponents . values [ choice . value . key ] = choice . value ;
7070} ) ;
7171
72- model . cssPreprocessor . choices . forEach ( function ( choice ) {
72+ model . cssPreprocessor . choices . forEach ( function ( choice ) {
7373 model . cssPreprocessor . values [ choice . value . key ] = choice . value ;
7474} ) ;
7575
76- model . jsPreprocessor . choices . forEach ( function ( choice ) {
76+ model . jsPreprocessor . choices . forEach ( function ( choice ) {
7777 model . jsPreprocessor . values [ choice . value . key ] = choice . value ;
7878} ) ;
7979
80- model . htmlPreprocessor . choices . forEach ( function ( choice ) {
80+ model . htmlPreprocessor . choices . forEach ( function ( choice ) {
8181 model . htmlPreprocessor . values [ choice . value . key ] = choice . value ;
8282} ) ;
8383
@@ -86,7 +86,7 @@ module.exports = {
8686 defaults : {
8787 angularVersion : model . angularVersion . values [ '1.4' ] ,
8888 angularModules : _ . pluck ( model . angularModules . choices , 'value' ) ,
89- jQuery : model . jQuery . values [ ' jquery2' ] ,
89+ jQuery : model . jQuery . values . jquery2 ,
9090 resource : model . resource . values [ 'angular-resource' ] ,
9191 router : model . router . values [ 'ui-router' ] ,
9292 ui : model . ui . values . bootstrap ,
0 commit comments