Skip to content

Commit

Permalink
put assets in the right modules
Browse files Browse the repository at this point in the history
  • Loading branch information
johnpapa committed Nov 26, 2014
1 parent 7c02762 commit cd156b5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cc-bmean/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"dateformat": "^1.0.7-1.2.3",
"debug": "^0.8.1",
"glob": "^4.0.4",
"gulp": "^3.8.8",
"gulp": "^3.8.10",
"gulp-angular-templatecache": "^1.3.0",
"gulp-autoprefixer": "0.0.8",
"gulp-bytediff": "^0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion cc-bmean/src/client/app/session/sessiondetail.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

angular
.module('app')
.module('app.session')
.controller('SessionDetail', SessionDetail);

SessionDetail.$inject = [
Expand Down
2 changes: 1 addition & 1 deletion cc-bmean/src/client/app/session/sessions-spaghetti.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'use strict';

angular
.module('app')
.module('app.session')
.controller('Sessions', ['$location', '$log', '$q', '$routeParams', 'zStorage', Sessions]);

function Sessions($location, $log, $q, $routeParams, zStorage) {
Expand Down
2 changes: 1 addition & 1 deletion cc-bmean/src/client/app/session/sessions.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

angular
.module('app')
.module('app.session')
.controller('Sessions', Sessions);

Sessions.$inject = ['$location', '$routeParams', 'common', 'config', 'datacontext'];
Expand Down
2 changes: 1 addition & 1 deletion cc-bmean/src/client/app/speaker/speakerdetail.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

angular
.module('app')
.module('app.speaker')
.controller('SpeakerDetail', SpeakerDetail);

SpeakerDetail.$inject = [
Expand Down
2 changes: 1 addition & 1 deletion cc-bmean/src/client/app/speaker/speakers.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

angular
.module('app')
.module('app.speaker')
.controller('Speakers', Speakers);

Speakers.$inject = ['$location', 'common', 'config', 'datacontext'];
Expand Down

0 comments on commit cd156b5

Please sign in to comment.