mirror of
https://github.com/KevinMidboe/zoff.git
synced 2026-01-14 13:35:59 +00:00
Removed lazyload completely, and updated embedding
This commit is contained in:
@@ -86,3 +86,13 @@ $(document).on( "click", ".vote-container", function(e){
|
||||
var id = $(this).attr("data-video-id");
|
||||
List.vote(id, "pos");
|
||||
});
|
||||
|
||||
$(document).on("click", ".prev_page", function(e){
|
||||
e.preventDefault();
|
||||
List.dynamicContentPage(-1);
|
||||
});
|
||||
|
||||
$(document).on("click", ".next_page", function(e){
|
||||
e.preventDefault();
|
||||
List.dynamicContentPage(1);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user