1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 03:24:11 +01:00

declare title temporary variable

This commit is contained in:
Doug Kearns
2007-06-19 14:34:57 +00:00
parent 105c9f902b
commit 206ab949e7

View File

@@ -234,7 +234,7 @@ function Bookmarks()
return null;
str = match_title[match_title.length-1]; // the last captured parenthesis is the rest of the string
title = match_title[3];
var title = match_title[3];
if(title.charAt(0) == '"')
title = title.substring(1,title.length-1);
res.title = title;