mirror of
https://github.com/transmission/transmission
synced 2025-02-19 04:41:11 +00:00
(trunk web) fix accidental global variable introduced in r12742
This commit is contained in:
parent
398ee0cc18
commit
ac86d3d740
1 changed files with 1 additions and 1 deletions
|
@ -518,7 +518,7 @@ Transmission.prototype =
|
|||
i = (i+1) % rows.length;
|
||||
else if (up)
|
||||
i = (i || rows.length) - 1;
|
||||
r = rows[i];
|
||||
var r = rows[i];
|
||||
|
||||
if (this._shift_index >= 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue