Skip to content

Instantly share code, notes, and snippets.

@jaynzr
Created June 14, 2013 17:45
Show Gist options
  • Save jaynzr/5783842 to your computer and use it in GitHub Desktop.
Save jaynzr/5783842 to your computer and use it in GitHub Desktop.
angular.module('sf.virtualScroll').filter('pager', function(){
return function(input, range, start){
return input.slice(start, start+range);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment