From 476843c25e4da2ac1c6c375b2ee6e2c0f97275ff Mon Sep 17 00:00:00 2001 From: webchick Date: Tue, 14 Feb 2012 13:46:20 -0500 Subject: Issue #1346914 by droplet: Use .length instead of jQuery.size(). --- modules/profile/profile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/profile') 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. -- cgit v1.2.3