From a90d422d46ce4c614b0005a17755b18c7022bf84 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Wed, 30 May 2007 13:03:12 +0000 Subject: [PATCH] fix typo in bufferposition_str variable declaration --- chrome/content/vimperator/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/vimperator/ui.js b/chrome/content/vimperator/ui.js index a76ca535..8caa429e 100644 --- a/chrome/content/vimperator/ui.js +++ b/chrome/content/vimperator/ui.js @@ -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";