Skip to content

Commit

Permalink
build(closure): fix invalid closure syntax generation
Browse files Browse the repository at this point in the history
  • Loading branch information
rschmukler authored and kennethcachia committed Sep 23, 2015
1 parent 91dc702 commit e482712
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
*/
angular
.module('material.core', [
'ngAnimate', // Core uses $animate
'material.animate', // for $animateCss polyfill with Angular < 1.4
'material.core.gestures', // for $mdGesture
'material.core.theming' // for $mdTheme
'ngAnimate',
'material.animate',
'material.core.gestures',
'material.core.theming'
])
.config( MdCoreConfigure );

Expand Down
1 change: 1 addition & 0 deletions src/core/util/animation/animate.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Polyfill angular < 1.4 (provide $animateCss)
angular
.module('material.core')
.factory('$$mdAnimate', function($q, $timeout, $mdConstant, $animateCss){
Expand Down

0 comments on commit e482712

Please sign in to comment.