1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 23:22:26 +01:00

fix typo in bufferposition_str variable declaration

This commit is contained in:
Doug Kearns
2007-05-30 13:03:12 +00:00
parent 1872ad9b0f
commit a90d422d46

View File

@@ -727,7 +727,7 @@ function StatusLine()
percent = win.scrollMaxY == 0 ? -1 : win.scrollY / win.scrollMaxY;
}
var bufferpostion_str = "";
var bufferposition_str = "";
percent = Math.round(percent*100);
if (percent < 0) bufferposition_str = "All";
else if (percent == 0) bufferposition_str = "Top";