blob: b1b9dfe61f5b29ae32939594c381ac31efc8c6c3 [file]
var phonecatApp = angular.module('phonecatApp', []);
phonecatApp.controller('PhoneListCtrl', function ($scope) {
$scope.phones = [
{'name': 'Nexus S',
'snippet': 'Fast just got faster with Nexus S.'},
{'name': 'Motorola XOOMâ„¢ with Wi-Fi',
'snippet': 'The Next, Next Generation tablet.',
test33: ''},
{'name': 'MOTOROLA XOOMâ„¢',
'snippet': 'The Next, Next Generation tablet.'}
];
});