You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
// Получить элемент e |
|
function reply(el) { |
|
|
|
document.getElementById("reply_to").value = el; |
|
|
|
repl_name = document.getElementById(el + "_author_name").innerText |
|
console.log(repl_name); |
|
|
|
document.getElementById("reply_to_name").innerText = repl_name; |
|
|
|
document.getElementById("comment_text_form").focus(); |
|
|
|
// показываем лейбл для ответа |
|
document.getElementById("reply_to_name_field").style.display = "block"; |
|
// скрываем лейбл для простого комментария |
|
document.getElementById("pure_comment_label").style.display = "none"; |
|
} |
|
|
|
function abort_reply() { |
|
console.log("Галя, отмена!") |
|
document.getElementById("reply_to").value = ''; |
|
|
|
// показываем лейбл для ответа |
|
document.getElementById("reply_to_name_field").style.display = "none"; |
|
// скрываем лейбл для простого комментария |
|
document.getElementById("pure_comment_label").style.display = "block"; |
|
|
|
|
|
}
|
|
|