We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b76ed0b commit 4696af7Copy full SHA for 4696af7
docs/content/tutorial/step_04.ngdoc
@@ -70,11 +70,14 @@ var phonecatApp = angular.module('phonecatApp', []);
70
phonecatApp.controller('PhoneListCtrl', function PhoneListCtrl($scope) {
71
$scope.phones = [
72
{'name': 'Nexus S',
73
- 'snippet': 'Fast just got faster with Nexus S.'},
+ 'snippet': 'Fast just got faster with Nexus S.',
74
+ 'age': 1},
75
{'name': 'Motorola XOOM™ with Wi-Fi',
- 'snippet': 'The Next, Next Generation tablet.'},
76
+ 'snippet': 'The Next, Next Generation tablet.',
77
+ 'age': 2},
78
{'name': 'MOTOROLA XOOM™',
- 'snippet': 'The Next, Next Generation tablet.'}
79
80
+ 'age': 3}
81
];
82
83
$scope.orderProp = 'age';
0 commit comments