Bugfix
Tento commit je obsažen v:
rodič
dbbcc67e93
revize
feb21b2e02
@ -35,11 +35,13 @@ $(function () {
|
|||||||
$(".thread").append(data.html + "<br>");
|
$(".thread").append(data.html + "<br>");
|
||||||
update_expandable($(`#${data.id} .expandable`));
|
update_expandable($(`#${data.id} .expandable`));
|
||||||
update_reltimes($(`#${data.id}`).find("time"));
|
update_reltimes($(`#${data.id}`).find("time"));
|
||||||
|
update_quote_links($(`#${data.id}`).find(".quote-link"));
|
||||||
break;
|
break;
|
||||||
case "updated":
|
case "updated":
|
||||||
$(`#${data.id}`).replaceWith(data.html);
|
$(`#${data.id}`).replaceWith(data.html);
|
||||||
update_expandable($(`#${data.id} .expandable`));
|
update_expandable($(`#${data.id} .expandable`));
|
||||||
update_reltimes($(`#${data.id}`).find("time"));
|
update_reltimes($(`#${data.id}`).find("time"));
|
||||||
|
update_quote_links($(`#${data.id}`)).find(".quote-link");
|
||||||
break;
|
break;
|
||||||
case "removed":
|
case "removed":
|
||||||
if (data.id === parseInt(thread[1])) {
|
if (data.id === parseInt(thread[1])) {
|
||||||
|
@ -7,20 +7,26 @@ $(function() {
|
|||||||
window.localStorage.removeItem("quoted_post");
|
window.localStorage.removeItem("quoted_post");
|
||||||
}
|
}
|
||||||
|
|
||||||
$(".quote-link").click(function () {
|
update_quote_links($(".quote-link"));
|
||||||
let post_id = $(this).text();
|
});
|
||||||
let thread_url = $(this).attr("data-thread-url");
|
|
||||||
let current_url = window.location.pathname;
|
|
||||||
|
|
||||||
if (current_url !== thread_url) {
|
function update_quote_links(elements) {
|
||||||
window.localStorage.setItem("quoted_post", post_id);
|
elements.each(function() {
|
||||||
window.location.href = `${thread_url}#${post_id}`;
|
$(this).click(function () {
|
||||||
|
let post_id = $(this).text();
|
||||||
|
let thread_url = $(this).attr("data-thread-url");
|
||||||
|
let current_url = window.location.pathname;
|
||||||
|
|
||||||
|
if (current_url !== thread_url) {
|
||||||
|
window.localStorage.setItem("quoted_post", post_id);
|
||||||
|
window.location.href = `${thread_url}#${post_id}`;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$("#post-form").attr("data-visible", true);
|
||||||
|
$("#content").append(`>>${post_id}\n`);
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
});
|
||||||
|
})
|
||||||
$("#post-form").attr("data-visible", true);
|
}
|
||||||
$("#content").append(`>>${post_id}\n`);
|
|
||||||
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
@ -71,7 +71,7 @@ summary {
|
|||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
.draggable {
|
#post-form-handle {
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<table class="form-table">
|
<table class="form-table">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="label draggable center" colspan="2">
|
<td id="post-form-handle" class="label center" colspan="2">
|
||||||
{% if reply %}
|
{% if reply %}
|
||||||
Nová odpověď
|
Nová odpověď
|
||||||
{% else %}
|
{% else %}
|
||||||
|
Načítá se…
Odkázat v novém úkolu
Zablokovat Uživatele