mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-24 01:22:27 +01:00
fix typo in bufferposition_str variable declaration
This commit is contained in:
@@ -727,7 +727,7 @@ function StatusLine()
|
|||||||
percent = win.scrollMaxY == 0 ? -1 : win.scrollY / win.scrollMaxY;
|
percent = win.scrollMaxY == 0 ? -1 : win.scrollY / win.scrollMaxY;
|
||||||
}
|
}
|
||||||
|
|
||||||
var bufferpostion_str = "";
|
var bufferposition_str = "";
|
||||||
percent = Math.round(percent*100);
|
percent = Math.round(percent*100);
|
||||||
if (percent < 0) bufferposition_str = "All";
|
if (percent < 0) bufferposition_str = "All";
|
||||||
else if (percent == 0) bufferposition_str = "Top";
|
else if (percent == 0) bufferposition_str = "Top";
|
||||||
|
|||||||
Reference in New Issue
Block a user