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