mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 06:58:42 +00:00
remove the function wrap from the connection manager
This commit is contained in:
parent
c0fd70a856
commit
759ae6356d
1 changed files with 316 additions and 320 deletions
|
@ -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 @@
|
|||
}
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue