Firefox 3以降で、ブックマークグループを開いたらグループの親のダミータブではなく子タブの方を選択するようにした

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@4536 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2009-06-18 09:05:36 +00:00
parent 8f0ea04980
commit 332bfad024

View File

@ -436,6 +436,13 @@ TreeStyleTabBrowser.prototype = {
if (TreeStyleTabService.checkToOpenChildTab(this))
TreeStyleTabService.stopToOpenChildTab(this);
$&]]>
).replace(
'this.selectedTab = firstTabAdded;',
<![CDATA[
this.selectedTab = aURIs[0].indexOf('about:treestyletab-group') < 0 ?
firstTabAdded :
TreeStyleTabService.getNextTab(firstTabAdded) ;
]]>
)
);