diff options
author | thinca | 2015-05-25 00:24:57 +0900 |
---|---|---|
committer | thinca | 2015-05-25 00:24:57 +0900 |
commit | b36a04a5e5d9ca77a4f5e6b3becd822fdd091b04 (patch) | |
tree | f500db38e871ca3fdba26a7953e82f6a66e9d16d | |
parent | b483a357eaffbc572be5d4da973e68fa25804a13 (diff) | |
download | vimperator-plugins-b36a04a5e5d9ca77a4f5e6b3becd822fdd091b04.tar.bz2 |
Fix TypeError
TypeError: redeclaration of formal parameter url
-rw-r--r-- | opener.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -42,9 +42,9 @@ let INFO = xml` (function () { let U = liberator.plugins.libly.$U; - function jump (url) { + function jump (_url) { let index = 0; - let url = util.stringToURLArray(url).toString(); + let url = util.stringToURLArray(_url).toString(); if (url == buffer.URL){ return false; } |