Author: jablko
Date: Wed Oct 13 22:45:26 2010
New Revision: 8106
Log:
Cosmetic change
Modified:
trunk/js/multiDelete.js
Modified: trunk/js/multiDelete.js
==============================================================================
--- trunk/js/multiDelete.js Wed Oct 13 22:44:05 2010 (r8105)
+++ trunk/js/multiDelete.js Wed Oct 13 22:45:26 2010 (r8106)
@@ -12,11 +12,11 @@
Qubit.multiDelete = function (thisObj)
{
// Hide element
- var parentRows = $(thisObj).closest('tr');
+ var $parentRows = $(thisObj).closest('tr');
// Add an "animateNicely" div to each td to make "hide" animation play
// nicely
- $('td', parentRows).each(function ()
+ $('td', $parentRows).each(function ()
{
// Only add to rows that don't already have an animateNicely div
if (0 == $('div.animateNicely', this).length)
@@ -34,9 +34,9 @@
}
});
- $('div:visible', parentRows).hide('normal', function ()
+ $('div:visible', $parentRows).hide('normal', function ()
{
- parentRows.hide();
+ $parentRows.hide();
});
}
--
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/qubit-commits?hl=en.