diff options
| author | Stephen Blott | 2014-10-31 13:01:40 +0000 |
|---|---|---|
| committer | Stephen Blott | 2014-10-31 13:01:40 +0000 |
| commit | 3e175bcf39d4794937ca493f27c06bb63d739c63 (patch) | |
| tree | 747349429945999b8ac6f0e39f8ffc0a89a0df33 | |
| parent | c6531a8765932d39426dde6215b4d623460d3d56 (diff) | |
| download | vimium-3e175bcf39d4794937ca493f27c06bb63d739c63.tar.bz2 | |
URLdecode string options for vomnibar.
| -rw-r--r-- | pages/vomnibar.coffee | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pages/vomnibar.coffee b/pages/vomnibar.coffee index 81401623..ece0d756 100644 --- a/pages/vomnibar.coffee +++ b/pages/vomnibar.coffee @@ -271,6 +271,7 @@ initializeOnDomReady = -> .map((option) -> [name, value] = option.split "=" options[name] = value + options[name] = unescape(value) if value ) # Set boolean options |
