summaryrefslogtreecommitdiff
path: root/modules/profile
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-02-14 13:46:20 -0500
committerwebchick <webchick@24967.no-reply.drupal.org>2012-02-14 13:46:20 -0500
commit476843c25e4da2ac1c6c375b2ee6e2c0f97275ff (patch)
treee6f669d2c3bf52ec814276050db4ffcb45b32d50 /modules/profile
parent5251e90c982b867d4bc25386b30f098f365cd52c (diff)
downloadbrdo-476843c25e4da2ac1c6c375b2ee6e2c0f97275ff.tar.gz
brdo-476843c25e4da2ac1c6c375b2ee6e2c0f97275ff.tar.bz2
Issue #1346914 by droplet: Use .length instead of jQuery.size().
Diffstat (limited to 'modules/profile')
-rw-r--r--modules/profile/profile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile/profile.js b/modules/profile/profile.js
index f842aa08a..f262560d2 100644
--- a/modules/profile/profile.js
+++ b/modules/profile/profile.js
@@ -24,7 +24,7 @@ Drupal.behaviors.profileDrag = {
}
}
// This category has become empty
- if ($(this).next('tr').is(':not(.draggable)') || $(this).next('tr').size() == 0) {
+ if ($(this).next('tr').is(':not(.draggable)') || $(this).next('tr').length == 0) {
$(this).removeClass('category-populated').addClass('category-empty');
}
// This category has become populated.