diff options
| author | Jez Ng | 2012-06-30 17:27:05 -0700 | 
|---|---|---|
| committer | Jez Ng | 2012-06-30 17:27:05 -0700 | 
| commit | 4a10da01c0e0fd21b3ab72a5fc44b1fcf421b4a0 (patch) | |
| tree | fdf61e676da9d5ecd5ec97349b1e8e538f059edc /content_scripts | |
| parent | 6e879d384a65dd4baa1816e9c9f16922dc995847 (diff) | |
| download | vimium-4a10da01c0e0fd21b3ab72a5fc44b1fcf421b4a0.tar.bz2 | |
Fix goUp.
Diffstat (limited to 'content_scripts')
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 3bc84e44..1d85170c 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -299,7 +299,7 @@ extend window,    goUp: (count) ->      url = window.location.href -    if (url[url.length - 1] == " / ") +    if (url[url.length - 1] == "/")        url = url.substring(0, url.length - 1)      urlsplit = url.split("/") | 
