ロケーションバーからの読み込みが機能しなくなっていたのを修正

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@5638 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2009-12-25 20:54:44 +00:00
parent 78040f608a
commit de6b48d0a2

View File

@ -1083,7 +1083,7 @@ var TreeStyleTabUtils = {
var str = aURI;
if (str instanceof Ci.nsIURI) str = aURI.spec;
return /^\w+:\/\/([^:\/]+)/.test(getShortcutOrURI(str)) ?
return /^\w+:\/\/([^:\/]+)/.test(this.browserWindow.getShortcutOrURI(str)) ?
RegExp.$1 :
null ;
},