Created
November 14, 2013 02:29
-
-
Save mattgen88/7460299 to your computer and use it in GitHub Desktop.
not populating ng-repeat properly in 1.2.0-rc3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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