summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-09-06 13:06:13 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-09-06 13:06:13 +0000
commitb3d3e39c47901bf9751b74146c34c361833f1c2d (patch)
tree16b6190078739c670023b1c9dc6672f2aef43b36 /misc
parentf2448fe718225ca23aa1fcb5f3785a55bf404680 (diff)
downloadbrdo-b3d3e39c47901bf9751b74146c34c361833f1c2d.tar.gz
brdo-b3d3e39c47901bf9751b74146c34c361833f1c2d.tar.bz2
#163361 by dvessel: fix hidden textareas in Opera and remove gap between textarea and grippie in Firefox/Safari
Diffstat (limited to 'misc')
-rw-r--r--misc/textarea.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/textarea.js b/misc/textarea.js
index 65b8d3cca..f561c3a0d 100644
--- a/misc/textarea.js
+++ b/misc/textarea.js
@@ -10,7 +10,7 @@ Drupal.behaviors.textarea = function(context) {
.parent().append($('<div class="grippie"></div>').mousedown(startDrag));
// Inherit visibility
- if ($(this).is(':hidden')) {
+ if ($(this).is('[@disabled]')) {
$(this).parent().hide();
$(this).show();
}