socek

Untitled

Jul 2nd, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var phonecatApp = angular.module('phonecatApp', []);
  2.  
  3. phonecatApp.controller(
  4.     'PhoneListCtrl',
  5.     [
  6.         '$scope',
  7.         '$http',
  8.         function ($scope, $http) {
  9.             $http.get('phones/phones.json').success(
  10.                 function(data) {
  11.                     $scope.phones = data;
  12.                 }
  13.             );
  14.  
  15.             $scope.orderProp = 'age';
  16.         }
  17.     ]
  18. );
Advertisement
Add Comment
Please, Sign In to add comment