app.factory('genaLoh', [' $location', function ($location) {
return function(scope) {
scope.$watch('paginate.page', function(page) {
$location.search('page', page);
});
scope.$watch('paginate.perPage', function(page) {
$location.search('perPage', page);
scope.paginate.page = 0;
});
};
}]);
app.controller('GenaCtrl', ['$scope', 'genaLoh',
function($scope, genaLoh) {
genaLoh($scope);
//bidlocode
}]);