Author: jablko
Date: Thu Oct 21 21:51:32 2010
New Revision: 8369
Log:
Cosmetic change
Modified:
trunk/js/dialog.js
Modified: trunk/js/dialog.js
==============================================================================
--- trunk/js/dialog.js Thu Oct 21 21:48:10 2010 (r8368)
+++ trunk/js/dialog.js Thu Oct 21 21:51:32 2010 (r8369)
@@ -44,14 +44,13 @@
{
case 'radio':
case 'checkbox':
- var input = $('input[name=' + this.name + ']',
thisDialog.table);
thisDialog.fields[this.name] = [];
- input.each(function ()
+ var $input = $('input[name=' + this.name + ']',
thisDialog.table).each(function ()
{
thisDialog.fields[this.name].push(this);
});
- thisDialog.initialValues[this.name] =
input.filter(':checked').val();
+ thisDialog.initialValues[this.name] =
$input.filter(':checked').val();
break;
default:
--
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.