mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-07 08:58:38 +00:00
fix unrequired requests
This commit is contained in:
parent
117d50b728
commit
8922717ff2
1 changed files with 7 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
/*!
|
/*!
|
||||||
* Deluge.ConnectionManager.js
|
* Deluge.ConnectionManager.js
|
||||||
*
|
*
|
||||||
* Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
|
* Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -88,7 +88,7 @@ Deluge.ConnectionManager = Ext.extend(Ext.Window, {
|
||||||
'selectionchange': {fn: this.onSelectionChanged, scope: this}
|
'selectionchange': {fn: this.onSelectionChanged, scope: this}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.panel = this.add({
|
this.panel = this.add({
|
||||||
autoScroll: true,
|
autoScroll: true,
|
||||||
items: [this.list],
|
items: [this.list],
|
||||||
|
@ -172,7 +172,7 @@ Deluge.ConnectionManager = Ext.extend(Ext.Window, {
|
||||||
*/
|
*/
|
||||||
updateButtons: function(record) {
|
updateButtons: function(record) {
|
||||||
var button = this.buttons[1], status = record.get('status');
|
var button = this.buttons[1], status = record.get('status');
|
||||||
|
|
||||||
// Update the Connect/Disconnect button
|
// Update the Connect/Disconnect button
|
||||||
if (status == _('Connected')) {
|
if (status == _('Connected')) {
|
||||||
button.enable();
|
button.enable();
|
||||||
|
@ -183,7 +183,7 @@ Deluge.ConnectionManager = Ext.extend(Ext.Window, {
|
||||||
button.enable();
|
button.enable();
|
||||||
button.setText(_('Connect'));
|
button.setText(_('Connect'));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update the Stop/Start Daemon button
|
// Update the Stop/Start Daemon button
|
||||||
if (status == _('Offline')) {
|
if (status == _('Offline')) {
|
||||||
if (record.get('host') == '127.0.0.1' || record.get('host') == 'localhost') {
|
if (record.get('host') == '127.0.0.1' || record.get('host') == 'localhost') {
|
||||||
|
@ -333,6 +333,7 @@ Deluge.ConnectionManager = Ext.extend(Ext.Window, {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// FIXME: Find out why this is being fired twice
|
||||||
// private
|
// private
|
||||||
onShow: function() {
|
onShow: function() {
|
||||||
if (!this.addHostButton) {
|
if (!this.addHostButton) {
|
||||||
|
@ -342,9 +343,10 @@ Deluge.ConnectionManager = Ext.extend(Ext.Window, {
|
||||||
this.stopHostButton = bbar.items.get('cm-stop');
|
this.stopHostButton = bbar.items.get('cm-stop');
|
||||||
}
|
}
|
||||||
this.loadHosts();
|
this.loadHosts();
|
||||||
|
if (this.running) return;
|
||||||
this.running = window.setInterval(this.update, 2000, this);
|
this.running = window.setInterval(this.update, 2000, this);
|
||||||
},
|
},
|
||||||
|
|
||||||
// private
|
// private
|
||||||
onStopClick: function(button, e) {
|
onStopClick: function(button, e) {
|
||||||
var connection = this.list.getSelectedRecords()[0];
|
var connection = this.list.getSelectedRecords()[0];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue