remove the function wrap from the connection manager

This commit is contained in:
Damien Churchill 2010-04-28 11:28:51 +01:00
commit 759ae6356d

View file

@ -30,11 +30,6 @@
* statement from all source files in the program, then also delete it here.
*/
(function() {
var hostRenderer = function(value, p, r) {
return value + ':' + r.data['port']
}
Deluge.ConnectionManager = Ext.extend(Ext.Window, {
layout: 'fit',
@ -215,7 +210,6 @@
// private
onClose: function(e) {
if (this.running) window.clearInterval(this.running);
this.hide();
},
@ -302,6 +296,9 @@
if (!this.hidden && this.rendered) {
this.hide();
}
if (this.running) {
}
},
// private
@ -381,4 +378,3 @@
}
}
});
})();