Skip to content

Instantly share code, notes, and snippets.

@mtigdemir
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save mtigdemir/446e18b673e82a2edac5 to your computer and use it in GitHub Desktop.

Select an option

Save mtigdemir/446e18b673e82a2edac5 to your computer and use it in GitHub Desktop.
<?php
$presenter = new Illuminate\Pagination\BootstrapPresenter($paginator);
?>
<?php if ($paginator->getLastPage() > 1): ?>
<ul class="pagination">
<?php echo $presenter->render(); ?>
</ul>
<?php endif; ?>
<script>
$('.pagination a').on('click', function (event) {
event.preventDefault();
if ( $(this).attr('href') != '#' ) {
$("html, body").animate({ scrollTop: 0 }, "fast");
$('#paginationContent').load($(this).attr('href'));
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment