1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 19:27:58 +01:00

move String#toURLArray to v.util.stringToURLArray - think of the kittens!

This commit is contained in:
Doug Kearns
2007-11-02 08:30:54 +00:00
parent b73d76cf6f
commit 65b2314f03
3 changed files with 80 additions and 79 deletions

View File

@@ -309,7 +309,7 @@ const vimperator = (function() //{{{
// convert the string to an array of converted URLs
// -> see String.prototype.toURLArray for more details
if (typeof urls == "string")
urls = urls.toURLArray();
urls = vimperator.util.stringToURLArray(urls);
if (urls.length == 0)
return false;