mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Hopefully fixed error with 'reloading every click'
This commit is contained in:
@@ -408,11 +408,13 @@ $(document).on("click", "#closePlayer", function(e){
|
||||
$("#closePlayer").remove();
|
||||
});
|
||||
|
||||
$(document).on("click", ".prev_page", function(){
|
||||
$(document).on("click", ".prev_page", function(e){
|
||||
e.preventDefault();
|
||||
List.dynamicContentPage(-1);
|
||||
});
|
||||
|
||||
$(document).on("click", ".next_page", function(){
|
||||
$(document).on("click", ".next_page", function(e){
|
||||
e.preventDefault();
|
||||
List.dynamicContentPage(1);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user