Skip to content

Instantly share code, notes, and snippets.

@bootleq
Created October 14, 2011 06:04
Show Gist options
  • Save bootleq/1286366 to your computer and use it in GitHub Desktop.
Save bootleq/1286366 to your computer and use it in GitHub Desktop.
ToggleTreeStyleTab for keyconfig
if (typeof gBrowser.treeStyleTab !== 'undefined') {
var ah = gBrowser.treeStyleTab.autoHide;
if (ah.expanded) {
ah.hide(ah.kSHOWN_BY_SHORTCUT);
} else {
ah.show(ah.kSHOWN_BY_SHORTCUT);
}
}
// issue: wrong splitter position when auto hide is not enabled.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment