forked from josecebe/twbs-pagination
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Merge branch 'develop'
- Loading branch information
Showing
11 changed files
with
298 additions
and
82 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <title>jQuery Pagination plugin</title> | ||
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/css/bootstrap.min.css" integrity="sha384-2hfp1SzUoho7/TsGGGDaFdsuuDL0LX2hnUp6VkX3CUQ2K4K+xjboZdsXyp4oUHZj" crossorigin="anonymous"> | ||
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js" integrity="sha384-THPy051/pYDQGanwU6poAc/hOdQxjnOEXzbT+OuUAFqNqFjL+4IGLBgCJC3ZOShY" crossorigin="anonymous"></script> | ||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.2.0/js/tether.min.js" integrity="sha384-Plbmg8JY28KFelvJVai01l8WyZzrYWG825m+cZ0eDDS1f7d/js6ikvy1+X+guPIB" crossorigin="anonymous"></script> | ||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/js/bootstrap.min.js" integrity="sha384-VjEeINv9OSwtWFLAtmc4JCtEJXXBub00gtSnszmspDLCtC0I4z4nqz7rEFbIZLLU" crossorigin="anonymous"></script> | ||
| <script src="../jquery.twbsPagination.js" type="text/javascript"></script> | ||
| </head> | ||
| <body> | ||
| <div class="container"> | ||
| <nav aria-label="Page navigation"> | ||
| <ul class="pagination" id="pagination"></ul> | ||
| </nav> | ||
| </div> | ||
| <script type="text/javascript"> | ||
| $(function () { | ||
| var obj = $('#pagination').twbsPagination({ | ||
| totalPages: 35, | ||
| visiblePages: 10, | ||
| onPageClick: function (event, page) { | ||
| console.info(page); | ||
| } | ||
| }); | ||
| console.info(obj.data()); | ||
| }); | ||
| </script> | ||
| </body> | ||
| </html> |
This file contains 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <title>jQuery Pagination plugin</title> | ||
| <link href="//netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> | ||
| <script src="//code.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script> | ||
| <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script> | ||
| <script src="../jquery.twbsPagination.js" type="text/javascript"></script> | ||
| </head> | ||
| <body> | ||
| <div class="container"> | ||
| <nav aria-label="Page navigation"> | ||
| <ul class="pagination" id="pagination"></ul> | ||
| </nav> | ||
| </div> | ||
| <script type="text/javascript"> | ||
| $(function () { | ||
| var obj = $('#pagination').twbsPagination({ | ||
| totalPages: 35, | ||
| visiblePages: 10, | ||
| onPageClick: function (event, page) { | ||
| console.info(page + ' (from options)'); | ||
| } | ||
| }).on('page', function (event, page) { | ||
| console.info(page + ' (from event listening)'); | ||
| }); | ||
| }); | ||
| </script> | ||
| </body> | ||
| </html> |
This file contains 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
Oops, something went wrong.