Session Manager (https://addons.mozilla.org/firefox/addon/2324)でのセッション復元時において
* すべてのツリーが常に展開された状態になっていたのを修正 * 折り畳まれたツリーがあるとセッション復元に失敗する場合があったのを修正 git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@5542 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
parent
8d2fdcead5
commit
e2e09a93a2
@ -176,14 +176,24 @@ TreeStyleTabService.overrideExtensionsPreInit = function() {
|
||||
// Session Manager
|
||||
// https://addons.mozilla.org/firefox/addon/2324
|
||||
// We need to initialize TST before Session Manager restores the last session anyway!
|
||||
if ('gSessionManager' in window &&
|
||||
'onLoad_proxy' in gSessionManager &&
|
||||
if ('gSessionManager' in window) {
|
||||
if ('onLoad_proxy' in gSessionManager &&
|
||||
'onLoad' in gSessionManager) {
|
||||
eval('gSessionManager.onLoad = '+gSessionManager.onLoad.toSource().replace(
|
||||
'{',
|
||||
'{ TreeStyleTabService.init();'
|
||||
));
|
||||
}
|
||||
if ('load' in gSessionManager) {
|
||||
eval('gSessionManager.load = '+gSessionManager.load.toSource().replace(
|
||||
'var tabcount = ',
|
||||
<![CDATA[
|
||||
gBrowser.treeStyleTab.collapseExpandAllSubtree(false, true);
|
||||
TreeStyleTabService.restoringWindow = true;
|
||||
$&]]>
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
// FullerScreen
|
||||
// https://addons.mozilla.org/firefox/addon/4650
|
||||
|
Loading…
Reference in New Issue
Block a user