Skip to content

Instantly share code, notes, and snippets.

@mattgen88
Created November 14, 2013 02:29
Show Gist options
  • Save mattgen88/7460299 to your computer and use it in GitHub Desktop.
Save mattgen88/7460299 to your computer and use it in GitHub Desktop.
not populating ng-repeat properly in 1.2.0-rc3
$scope.loadFeeds = function () {
$http.get('/api/feeds/?token=' + authsvc.getToken()).
success(function (data, status) {
$scope.feeds = data.data;
console.log(data);
}).
error(function (data, status) {
//wut
console.log('Unabled to retrieve feed list: ' + data);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment