yeti_c wrote:Ishiro wrote:yeti,
In games you are not in, BOB is broke. Its the floating action form. Replace:
- Code: Select all
if (OPTIONS["floatActions"] == "On")
{
var actionForm = document.getElementById('action-form')
actionForm.style.position='fixed'
actionForm.style.bottom=0
actionForm.style.zIndex=1
}
With:
- Code: Select all
if (OPTIONS["floatActions"] == "On")
{
var actionForm = document.getElementById('action-form')
if (actionForm != null)
{
actionForm.style.position='fixed'
actionForm.style.bottom=0
actionForm.style.zIndex=1
}
}
In games you are not in (just spectating), there is no action form.
Ah I see - of course - In games you are in - but not playing a turn - there is still an action form - it says "Click here to goto next game"...
Cheers...
Will fix.
C.
yes, that..
