summaryrefslogtreecommitdiff
path: root/common/content/statusline.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2011-01-10 16:57:47 -0500
committerKris Maglione <maglione.k@gmail.com>2011-01-10 16:57:47 -0500
commit893ed79637dec5369e21e092e7e0136f9bd3440f (patch)
tree5c32df0d25d6643899591301dd65048bd20d42ee /common/content/statusline.js
parent2da26d95e630b59acc9af54fcf7a96e1be900500 (diff)
downloadpentadactyl-893ed79637dec5369e21e092e7e0136f9bd3440f.tar.gz
Fix deleting files after viewing them from source links in :list*.
Diffstat (limited to 'common/content/statusline.js')
-rw-r--r--common/content/statusline.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/statusline.js b/common/content/statusline.js
index 2bc9660b..888336a7 100644
--- a/common/content/statusline.js
+++ b/common/content/statusline.js
@@ -230,7 +230,7 @@ var StatusLine = Module("statusline", {
if (progress <= 0)
progressStr = "[ Loading... ]";
else if (progress < 1) {
- progress = Math.floor(progress * 20);
+ progress = Math.round(progress * 20);
progressStr = "["
+ "===================> "
.substr(20 - progress, 20)