mirror of
https://github.com/transmission/transmission
synced 2025-02-20 13:16:53 +00:00
(trunk web) #4442 "WebUI doesn't update after performing 'Remove From List' - r12723" -- fixed.
This commit is contained in:
parent
9ae9c2e56e
commit
296a2064f7
1 changed files with 3 additions and 3 deletions
|
@ -934,9 +934,9 @@ Transmission.prototype =
|
|||
$(key).deselectMenuSiblings().selectMenuItem();
|
||||
}
|
||||
|
||||
this[Prefs._TurtleState] = prefs[RPC._TurtleState];
|
||||
this[Prefs._TurtleState] = p[RPC._TurtleState];
|
||||
this.updateTurtleButton();
|
||||
this.setCompactMode(prefs[Prefs._CompactDisplayState]);
|
||||
this.setCompactMode(p[Prefs._CompactDisplayState]);
|
||||
},
|
||||
|
||||
updatePortStatus: function(status) {
|
||||
|
@ -1660,7 +1660,7 @@ Transmission.prototype =
|
|||
{
|
||||
if (torrent_ids && torrent_ids.length)
|
||||
{
|
||||
for (var i=0, id; i=torrent_ids[i]; ++i)
|
||||
for (var i=0, id; id=torrent_ids[i]; ++i)
|
||||
delete this._torrents[id];
|
||||
this.refilter();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue