1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-13 18:25:48 +01:00

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

This commit is contained in:
Doug Kearns
2007-11-07 12:00:34 +00:00
parent a4131d64df
commit 8457cfdf33
3 changed files with 78 additions and 78 deletions

View File

@@ -423,7 +423,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;