The show navigation pane link in RoboHelp 7 doesn't correctly work on Firefox 3.6.0. This is the link you get in the top of a topic when you directly open a topic instead. Clicking this link shows the skin.
In Firefox, the skin is shown, but with the incorrect topic. If you also have trouble with this bug, you can fix it as follows:
- Open whthost.js
- Find the function
syncInit(). - Go to
gInSync=false;at the bottom of the function. - Replace the variable with:
if(gbMozilla)
setTimeout("FF_fix()", 1);
else
gInSync=false;- Add the function
FF_fix()to whthost.js:
function FF_fix()
{
gInSync=false
}- Save the changes.
Note: This article is a copy of one of my forum posts.
