Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 79a00db

Browse files
crisbetoThomasBurleson
authored andcommitted
fix(build): closure build needs @ngInject annotation
It was labeled as "@ngInjdect" instead of "@ngInject". Refs #7610. Closes #7613
1 parent 1ca6e76 commit 79a00db

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

src/components/menuBar/js/menuBarDirective.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,7 @@ angular
9292
.module('material.components.menuBar')
9393
.directive('mdMenuBar', MenuBarDirective);
9494

95-
/**
96-
*
97-
* @ngInjdect
98-
*/
95+
/* @ngInject */
9996
function MenuBarDirective($mdUtil, $mdTheming) {
10097
return {
10198
restrict: 'E',

src/components/menuBar/js/menuItemDirective.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ angular
33
.module('material.components.menuBar')
44
.directive('mdMenuItem', MenuItemDirective);
55

6-
/**
7-
*
8-
* @ngInjdect
9-
*/
6+
/* @ngInject */
107
function MenuItemDirective() {
118
return {
129
require: ['mdMenuItem', '?ngModel'],

0 commit comments

Comments
 (0)