diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-01-10 16:57:47 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-01-10 16:57:47 -0500 |
commit | 893ed79637dec5369e21e092e7e0136f9bd3440f (patch) | |
tree | 5c32df0d25d6643899591301dd65048bd20d42ee /common/content/statusline.js | |
parent | 2da26d95e630b59acc9af54fcf7a96e1be900500 (diff) | |
download | pentadactyl-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.js | 2 |
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) |