1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/10741] Do not resize textarea.no-auto-resize

Do not auto-resize textareas with class .no-auto-resize

PHPBB3-10741
This commit is contained in:
Vjacheslav Trushkin
2013-04-09 18:47:08 +03:00
parent 316efcbbbb
commit 67f0e19128
2 changed files with 2 additions and 2 deletions

View File

@@ -152,7 +152,7 @@ $('[data-ajax]').each(function() {
* Automatically resize textarea
*/
$(document).ready(function() {
phpbb.resizeTextArea($('textarea'), {minHeight: 75});
phpbb.resizeTextArea($('textarea:not(.no-auto-resize)'), {minHeight: 75});
});