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