Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
fix(tabs): add DI array-style annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnaud Lachaume authored and pkozlowski-opensource committed Aug 8, 2013
1 parent 7fdf730 commit aac4a0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tabs/tabs.js
Expand Up @@ -293,7 +293,7 @@ function($parse, $http, $templateCache, $compile) {
}
}])

.directive('tabsetTitles', function($http) {
.directive('tabsetTitles', ['$http', function($http) {
return {
restrict: 'A',
require: '^tabset',
Expand All @@ -310,7 +310,7 @@ function($parse, $http, $templateCache, $compile) {
}
}
};
})
}])

;

0 comments on commit aac4a0d

Please sign in to comment.