1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 18:14:12 +01:00

add missing semicolons

This commit is contained in:
Doug Kearns
2008-09-18 12:23:38 +00:00
parent e64a7397df
commit 23492c82e7
6 changed files with 13 additions and 12 deletions

View File

@@ -896,7 +896,7 @@ const liberator = (function () //{{{
if (urls.length > 20 && !force)
{
liberator.commandline.input("This will open " + urls.length + " new tabs. Would you like to continue? (yes/[no])",
function (resp) { if (resp && resp.match(/^y(es)?$/i)) liberator.open(urls, where, true) });
function (resp) { if (resp && resp.match(/^y(es)?$/i)) liberator.open(urls, where, true); });
return true;
}