From cd6d21e78a775277fb771ea67f0e1007f0bee5e4 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Fri, 25 Jul 2014 14:35:36 +0100 Subject: [PATCH] docs(tutorial/step-2): note that ng-app now needs a module name Closes #7655 --- docs/content/tutorial/step_02.ngdoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/content/tutorial/step_02.ngdoc b/docs/content/tutorial/step_02.ngdoc index b38fe2dc..b3cbe11b 100644 --- a/docs/content/tutorial/step_02.ngdoc +++ b/docs/content/tutorial/step_02.ngdoc @@ -65,6 +65,11 @@ __controller__ to the DOM at this point: bindings, which are referring to our application model, which is set up in our `PhoneListCtrl` controller. +
+Note: We have specified an {@link angular.Module Angular Module} to load using `ng-app="phonecatApp"`, +where `phonecatApp` is the name of our module. This module will contain the `PhoneListCtrl`. +
+ ## Model and Controller