aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial/step_07.ngdoc
diff options
context:
space:
mode:
authorJames Dunn2013-10-03 10:16:44 +0100
committerPete Bacon Darwin2013-10-03 10:19:19 +0100
commit575f63ac508a988e0c0ecbf93f62ea6f4bab13c0 (patch)
treebd3fdf07e1b4d0e98a926b9f3ba25f3d4ab81bcd /docs/content/tutorial/step_07.ngdoc
parentd3fcacedd6e6fe14892fa110ebe20babd886d4bb (diff)
downloadangular.js-575f63ac508a988e0c0ecbf93f62ea6f4bab13c0.tar.bz2
docs(tutorial): update examples to show best practices
Closes #4256, #4255, #4254, #4253, #4250, #4092
Diffstat (limited to 'docs/content/tutorial/step_07.ngdoc')
-rw-r--r--docs/content/tutorial/step_07.ngdoc8
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/content/tutorial/step_07.ngdoc b/docs/content/tutorial/step_07.ngdoc
index ea46f5ef..35f1f920 100644
--- a/docs/content/tutorial/step_07.ngdoc
+++ b/docs/content/tutorial/step_07.ngdoc
@@ -69,7 +69,7 @@ both module systems can live side by side and fulfil their goals.
__`app/js/app.js`:__
<pre>
-angular.module('phonecat', []).
+var myApp = angular.module('phonecat', []).
config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/phones', {templateUrl: 'partials/phone-list.html', controller: PhoneListCtrl}).
@@ -124,11 +124,9 @@ __`app/index.html`:__
__`app/js/controllers.js`:__
<pre>
...
-function PhoneDetailCtrl($scope, $routeParams) {
+myApp.controller('PhoneDetailCtrl', ['$scope', '$routeParams', function($scope, $routeParams) {
$scope.phoneId = $routeParams.phoneId;
-}
-
-//PhoneDetailCtrl.$inject = ['$scope', '$routeParams'];
+}]);
</pre>