mirror of
https://github.com/transmission/transmission.git
synced 2025-12-23 03:48:41 +00:00
(trunk web) fix accidental global variable introduced in r12742
This commit is contained in:
@@ -518,7 +518,7 @@ Transmission.prototype =
|
|||||||
i = (i+1) % rows.length;
|
i = (i+1) % rows.length;
|
||||||
else if (up)
|
else if (up)
|
||||||
i = (i || rows.length) - 1;
|
i = (i || rows.length) - 1;
|
||||||
r = rows[i];
|
var r = rows[i];
|
||||||
|
|
||||||
if (this._shift_index >= 0)
|
if (this._shift_index >= 0)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user