I have a trouble with my phones.json file.
I added Folder phones and phones.json into my project.
I wrote homeController.js:
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.orderPror = 'age';
}]);
after running a project i have error:

Why does it fail to load phones.json? Thanks for your answers.
