yes, that..yeti_c wrote: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"...Ishiro wrote:yeti,
In games you are not in, BOB is broke. Its the floating action form. Replace:With: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 }In games you are not in (just spectating), there is no action form.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 } }
Cheers...
Will fix.
C.




