From aac4a0dd4a0ea49d47c1433452eff7a1b260a568 Mon Sep 17 00:00:00 2001 From: Arnaud Lachaume Date: Thu, 8 Aug 2013 23:39:24 +1000 Subject: [PATCH] fix(tabs): add DI array-style annotations --- src/tabs/tabs.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tabs/tabs.js b/src/tabs/tabs.js index 125c7c3a89..ab7f0b4263 100644 --- a/src/tabs/tabs.js +++ b/src/tabs/tabs.js @@ -293,7 +293,7 @@ function($parse, $http, $templateCache, $compile) { } }]) -.directive('tabsetTitles', function($http) { +.directive('tabsetTitles', ['$http', function($http) { return { restrict: 'A', require: '^tabset', @@ -310,7 +310,7 @@ function($parse, $http, $templateCache, $compile) { } } }; -}) +}]) ;