mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-12-08 20:48:48 +00:00
Removing more dependencies
This commit is contained in:
@@ -181,7 +181,6 @@ function get_list_ajax() {
|
||||
}
|
||||
},
|
||||
error: function(response) {
|
||||
console.log(response);
|
||||
if(response.responseJSON.status == 403) {
|
||||
start_auth();
|
||||
} else if(response.responseJSON.status == 429) {
|
||||
@@ -195,6 +194,44 @@ function get_list_ajax() {
|
||||
});
|
||||
}
|
||||
|
||||
function contextListener(that, e) {
|
||||
var parent = $(that).parent();
|
||||
var suggested = false;
|
||||
if(parent.attr("id").indexOf("suggested-") > -1) suggested = true;
|
||||
$(".context-menu-root").attr("data-suggested", suggested);
|
||||
$(".context-menu-root").attr("data-id", parent.attr("id").replace("suggested-", ""));
|
||||
$("#context-menu-overlay").removeClass("hide");
|
||||
var left = e.pageX - $(".context-menu-root").width() / 2;
|
||||
var top = e.pageY;
|
||||
if(left + $(".context-menu-root").width() > $(window).width()) {
|
||||
left = $(window).width() - $(".context-menu-root").width() - 15;
|
||||
} else if (left < 0) {
|
||||
left = 11;
|
||||
}
|
||||
if(top + $(".context-menu-root").width() > $(window).height()) {
|
||||
top = $(window).height() - $(".context-menu-root").height() - 15;
|
||||
} else if(top < 0) {
|
||||
top = 15;
|
||||
}
|
||||
$(".context-menu-root").css({left: left,top:top});
|
||||
$(".context-menu-root").removeClass("hide");
|
||||
if(!Helper.mobilecheck()) {
|
||||
mouseContext(left, top);
|
||||
}
|
||||
}
|
||||
|
||||
function mouseContext(left, top) {
|
||||
$(document).off("mousemove");
|
||||
$(document).mousemove(function( event ) {
|
||||
if(event.pageX < left - 60 || event.pageX > left + $(".context-menu-root").width() + 60 ||
|
||||
event.pageY < top - 60 || event.pageY > top + $(".context-menu-root").height() + 60) {
|
||||
$(".context-menu-root").addClass("hide");
|
||||
$("#context-menu-overlay").addClass("hide");
|
||||
$(document).off("mousemove");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function get_np_ajax() {
|
||||
/*var c = Crypt.get_userpass(chan.toLowerCase());
|
||||
if(c == undefined) c = "";*/
|
||||
|
||||
Reference in New Issue
Block a user