bnwrx wrote:I am noticing that in the FireFox browser, the "refresh countdown box" the 1st digit is not displayed only the 2nd digit. IE: 23 seconds show only 3 seconds. In Chrome and IE9 the box shows perfectly. Is this just a nuance of the FF browser?
Bob, which version of Firefox are you using? Have you made any modification to either the 'gauges-ss.htm' or the 'gauges.js' file?
I have finally moved to version 5.0 (after tweaking a few extensions) and the timer is showing both digits. I also played with the zoom function of the browser and the size of the characters used for the digits did not change. I have tested after deactivating the digital font and, again, the timer was showing both digits.
But Firefox has not been the best browser to display correctly the gauges - it seems their support of HTML5 is not yet fully compliant to the sandard - in my tests, Google Chrome has been the only browser to give consistent results.
If you are interested in doing some testings, here is a modification you could try - please remember, thought, that the file you are about to modify will be overwritten with the next update of the gauges script.
Hopefully you do have an editor such as
Notepad++ (a very popular freeware and very versatile editor) - I am going to use Notepad++ to make the following modifying the script.
IMPORTANT: Before you make any modification to any of the the script, it is
STRONGLY suggested that you make a backup copy of the file 'gauges.js' which you are about to modify.
Start Notepad++ and browse (look for) the file 'gauges.js' - if you have installed the gauges using the default settings (and paths), the file 'gauges.js' should be in the 'scripts' directory inside the 'gauges-ss' directory. Once you have the file 'gauges.js' loaded, go to line 276:
Code: Select all
width : (g_count.toString().length * 13) + (LANG.timer.length * 6),
replace the 13 with 23
Code: Select all
width : (g_count.toString().length * 23) + (LANG.timer.length * 6),
This modification will increase the width of the count-down timer display. Please post your comments/results concerning the suggested modification. Thanks.