Can't turn progress bar off and on

Forum for questions and support relating to the 1.24.x releases only.
Locked
tommy
Posts: 45
Joined: Sun Aug 17, 2003 2:58 am

Can't turn progress bar off and on

Post by tommy »

I installed the recently released 1.24.3.
My previous installation was 1.22.0. In that release the progress bar functioned very smoothly.
In this release I find the progress bar to be quite jerky. As well, it frequently doesn't complete those last few seconds.
From the Options>Help, it seems this was anticipated and there is an option to turn it off.
Toggling it on/off didn't seem to make any difference. It was always on.
I couldn't find any place in the code where the value of SHOW_PROGRESS was tested so I made this quick fix.

in ./skins/classic/views/js/event.js.php I added:
var SHOW_PROGRESS = <? = ZM_WEB_SHOW_PROGRESS ?>;

./skins/classic/views/js/event.js, around line 74, I changed:

updateProgressBar();

to:

if ( SHOW_PROGRESS )
updateProgessBar();


That works.

Now I'm left wondering.
I don't think anyone else has reported an inability to turn the progress bar off and on. Given that it is a desirable feature, most people must have it functioning well enough to just leave it alone, or they can actually turn it off and on.
I'm wondering if there is something peculiar about my installation
Locked