Author: damoxc
Revision: 5419
Log:
sort out some whitespace
Diff:
Modified: trunk/deluge/ui/web/js/ext-extensions-debug.js
===================================================================
--- trunk/deluge/ui/web/js/ext-extensions-debug.js 2009-06-26 05:29:48 UTC
(rev 5418)
+++ trunk/deluge/ui/web/js/ext-extensions-debug.js 2009-06-26 18:40:48 UTC
(rev 5419)
@@ -752,32 +752,31 @@
Ext.override(Ext.form.RadioGroup, {
afterRender: function() {
- var that = this;
- this.items.each(function(i) {
- that.relayEvents(i, ['check']);
- });
-
- Ext.form.RadioGroup.superclass.afterRender.call(this)
- },
-
- getName: function() {
- return this.items.first().getName();
- },
+ var that = this;
+ this.items.each(function(i) {
+ that.relayEvents(i, ['check']);
+ });
+ Ext.form.RadioGroup.superclass.afterRender.call(this)
+ },
- getValue: function() {
+ getName: function() {
+ return this.items.first().getName();
+ },
+
+ getValue: function() {
var v;
this.items.each(function(item) {
- v = item.getRawValue();
- return !item.getValue();
+ v = item.getRawValue();
+ return !item.getValue();
});
return v;
- },
+ },
setValue: function(v) {
this.items.each(function(item) {
item.setValue((item.getRawValue() === 'true') == v);
- });
- }
+ });
+ }
});
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---