n8finch
9/18/2016 - 10:31 AM

angular.module('myApp', ['ngResource', 'ui.router'])

angular.module('myApp', ['ngResource', 'ui.router'])

angular.module('myApp', ['ngResource', 'ui.router'])
    //CONTROLLERS
    .controller('Posts', ['$scope', '$http', function ($scope, $http) {
      $http({
        url: 'https://n8finch.dev/wp-json/wp/v2/posts',
        cache: true
      }).success(function (res) {
        $scope.posts = res;
      });

    }]);