aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles
diff options
context:
space:
mode:
authorVjacheslav Trushkin <cyberalien@gmail.com>2013-04-09 18:47:08 +0300
committerVjacheslav Trushkin <cyberalien@gmail.com>2013-04-12 16:46:54 +0300
commit67f0e19128415210f0ece4a8cd3df12e4b35eaf6 (patch)
tree4981c838ec5c4f46738110f88751fbe774f4db1d /phpBB/styles
parent316efcbbbb72058bb9986be08af3d11173817386 (diff)
downloadforums-67f0e19128415210f0ece4a8cd3df12e4b35eaf6.tar
forums-67f0e19128415210f0ece4a8cd3df12e4b35eaf6.tar.gz
forums-67f0e19128415210f0ece4a8cd3df12e4b35eaf6.tar.bz2
forums-67f0e19128415210f0ece4a8cd3df12e4b35eaf6.tar.xz
forums-67f0e19128415210f0ece4a8cd3df12e4b35eaf6.zip
[ticket/10741] Do not resize textarea.no-auto-resize
Do not auto-resize textareas with class .no-auto-resize PHPBB3-10741
Diffstat (limited to 'phpBB/styles')
-rw-r--r--phpBB/styles/prosilver/template/ajax.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/ajax.js b/phpBB/styles/prosilver/template/ajax.js
index e7dfe95009..2528b96ece 100644
--- a/phpBB/styles/prosilver/template/ajax.js
+++ b/phpBB/styles/prosilver/template/ajax.js
@@ -229,7 +229,7 @@ $('#member_search').click(function () {
* Automatically resize textarea
*/
$(document).ready(function() {
- phpbb.resizeTextArea($('textarea:not(#message-box textarea)'), {minHeight: 75, maxHeight: 250});
+ phpbb.resizeTextArea($('textarea:not(#message-box textarea, .no-auto-resize)'), {minHeight: 75, maxHeight: 250});
phpbb.resizeTextArea($('#message-box textarea'));
});