chore(docs): ensure DI annotations are in place

This commit is contained in:
Peter Bacon Darwin
2014-09-24 09:51:10 +01:00
parent b9e899c8b2
commit 8ab673d430
3 changed files with 4 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
angular.module('tutorials', [])
.directive('docTutorialNav', function(templateMerge) {
.directive('docTutorialNav', ['templateMerge' ,function(templateMerge) {
var pages = [
'',
'step_00', 'step_01', 'step_02', 'step_03', 'step_04',
@@ -27,7 +27,7 @@ angular.module('tutorials', [])
'<a href="tutorial/{{next}}"><li class="btn btn-primary">Next <i class="glyphicon glyphicon-step-forward"></i></li></a>', props));
}
};
})
}])
.directive('docTutorialReset', function() {