Author: damoxc
Revision: 5565
Log:
use boolean values rather than string values for the radiobuttons
Diff:
Modified: trunk/deluge/ui/web/js/Deluge.Preferences.Downloads.js
===================================================================
--- trunk/deluge/ui/web/js/Deluge.Preferences.Downloads.js 2009-07-28
23:37:11 UTC (rev 5564)
+++ trunk/deluge/ui/web/js/Deluge.Preferences.Downloads.js 2009-07-29
08:19:45 UTC (rev 5565)
@@ -49,8 +49,8 @@
name: 'compact_allocation',
labelSeparator: '',
items: [
- {boxLabel: _('Compact') + ' ',
value: 'true'},
- {boxLabel: _('Full'), value: 'false'}
+ {boxLabel: _('Compact') + ' ',
value: true},
+ {boxLabel: _('Full'), value: false}
]
}));
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"deluge-commit" 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/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---