remove the function wrap from the connection manager
This commit is contained in:
parent
c0fd70a856
commit
759ae6356d
@ -30,12 +30,7 @@
|
||||
* 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, {
|
||||
Deluge.ConnectionManager = Ext.extend(Ext.Window, {
|
||||
|
||||
layout: 'fit',
|
||||
width: 300,
|
||||
@ -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
|
||||
@ -380,5 +377,4 @@
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
})();
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user