summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
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();
}