Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var phonecatApp = angular.module('phonecatApp', []);
- phonecatApp.controller(
- 'PhoneListCtrl',
- [
- '$scope',
- '$http',
- function ($scope, $http) {
- $http.get('phones/phones.json').success(
- function(data) {
- $scope.phones = data;
- }
- );
- $scope.orderProp = 'age';
- }
- ]
- );
Advertisement
Add Comment
Please, Sign In to add comment