ng-repeat with filter not working
HTML
<div ng-app="myApp" ng-controller="homeController">
saada
</div>
JavaScript
var myApp = angular.module("myApp", []);
myApp.controller('homeController',['$scope','$http', function($scope,$http){
$http.jsonp("http://ajax.googleapis.com/ajax/services/feed/load",{ params: { "v": "1.0", "num": "10", q": "http://blog.nraboy.com/feed/" } })
.success(function(data) {
console.log(data)
})
.error(function(data) {
});
}]);