Инфо:
Модификация позволяет вставить в форму быстрого ответа выделенный пользователем текст сообщения.
Установка:
Первый пункт может быть уже выполнен, будьте разборчивы.
1. Заходим в Topic View Section -> quick_reply_box_open
1.1. Находим строку:
<textarea cols='70' rows='8' name='Post' class='textinput' tabindex="1"></textarea>
1.2. Заменяем на:
<textarea id='tex' cols='70' rows='8' name='Post' class='textinput' tabindex="1"></textarea>
2. Заходим в Topic View Section -> Header
2.1 Находим строки:
//--> </script> <a name='top'></a> <!--IBF.FORUM_RULES-->
2.2. Перед ними вставляем:
<!-- Функции быстрой цитаты --> function CopyQuick() { window.txt='' if (document.getSelection) { window.txt=document.getSelection() } else if (document.selection) { window.txt=document.selection.createRange().text; } } function PasteQuick(name,dt,postid) { if(document.REPLIER.Post) if (window.txt.replace(" ","") != "") { document.REPLIER.Post.value +='[quote='+name+', '+dt+']'+window.txt+'[/quote]' var f_reply = document.getElementById('qr_open'); if (f_reply.style.display == "none") { f_reply.style.display = ""; } if (document.getElementById) { document.getElementById("tex").focus(); } else if (document.all){ itm = document.all["tex"].focus(); } else if (document.layers){itm = document.layers["tex"].focus(); } scroll(0,10000); } } <!-- Конец функций быстрой цитаты>
Дополнение: Кнопка "Цитата":
Отредактировано Grin (2006-06-23 14:09:33)