mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 14:18:00 +01:00
add missing var declaration to urls in openURLs*()
This commit is contained in:
@@ -1304,7 +1304,7 @@ function historyGoToEnd()
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
function openURLs(str)
|
||||
{
|
||||
urls = stringToURLs(str);
|
||||
var urls = stringToURLs(str);
|
||||
if (urls.length == 0)
|
||||
return false;
|
||||
|
||||
@@ -1318,7 +1318,7 @@ function openURLs(str)
|
||||
|
||||
function openURLsInNewTab(str, activate)
|
||||
{
|
||||
urls = stringToURLs(str);
|
||||
var urls = stringToURLs(str);
|
||||
if (urls.length == 0)
|
||||
return null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user