We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ed4ad5 commit 69452faCopy full SHA for 69452fa
1 file changed
docs/content/tutorial/step_02.ngdoc
@@ -217,9 +217,13 @@ is located at `./config/karma.conf.js`).
217
218
* Create a new model property in the controller and bind to it from the template. For example:
219
220
- $scope.hello = "Hello, World!"
+ $scope.name = "World"
221
222
- Refresh your browser to make sure it says, "Hello, World!"
+ Then add a new binding to `index.html`:
223
+
224
+ <p>Hello, {{name}}!</p>
225
226
+ Refresh your browser and verifies that it says "Hello, World!".
227
228
* Create a repeater that constructs a simple table:
229
0 commit comments