1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 15:48:00 +01:00

Fixed vimperator for newer firefoxes due to changed ids

This commit is contained in:
Martin Stubenschrott
2008-01-31 12:16:00 +00:00
parent a510328e4b
commit fd631194d5

View File

@@ -210,12 +210,25 @@ vimperator.Options = function () //{{{
}
}
// show/hide the menubar, toolbar and bookmarks toolbar
function setGuiOptions(value)
{
// hide the menubar, toolbar and bookmarks toolbar
// FIXME: when we release a vimperator with a Firefox3 requirement (no beta), remove the old ids
try
{
document.getElementById("toolbar-menubar").collapsed = !/m/.test(value);
// these the new ids for Firefox > 20080130
document.getElementById("navigation-toolbar").collapsed = !/T/.test(value);
document.getElementById("personal-toolbar"). collapsed = !/b/.test(value);
}
catch (e)
{
// these two ids are for Firefox <= 20080130
document.getElementById("nav-bar"). collapsed = !/T/.test(value);
document.getElementById("PersonalToolbar").collapsed = !/b/.test(value);
// vimperator.log("setGuiOptions raised an exception");
}
guioptionsDone = true;
}