[fossil-users] JS errors in IE8 on www.fossil-scm.org/fossil and www.sqlite.org/src

2014-01-21 Thread Jan Nijtmans
The fossil web-sites mentioned have a little running clock just below the Not logged in string (or the username for people who are logged in). In IE8, this clock doesn't work, and (when opening the debugger) gives javascript errors. The reason is that Date.toISOString() is not supported in IE8.

Re: [fossil-users] JS errors in IE8 on www.fossil-scm.org/fossil and www.sqlite.org/src

2014-01-21 Thread Martijn Coppoolse
If you're changing that code anyway, could you please also take care of the following change: setTimeout(updateClock();,(60-d.getUTCSeconds())*1000); to setTimeout(updateClock,(60-d.getUTCSeconds())*1000); (i.e. pass the function itself to setTimeout, instead of passing a string to be

Re: [fossil-users] JS errors in IE8 on www.fossil-scm.org/fossil and www.sqlite.org/src

2014-01-21 Thread Stephan Beal
On Tue, Jan 21, 2014 at 8:17 PM, Martijn Coppoolse li...@martijn.coppoolse.com wrote: If you're changing that code anyway, could you please also take care of the following change: setTimeout(updateClock();,(60-d.getUTCSeconds())*1000); to

Re: [fossil-users] JS errors in IE8 on www.fossil-scm.org/fossil and www.sqlite.org/src

2014-01-21 Thread Jan Nijtmans
2014/1/21 Stephan Beal sgb...@googlemail.com: Personally, I don't see the need for a clock on a web page, in general. Most screens have a clock in a corner somewhere anyway. This clock shows UTC, which gives a reference for all timestamps given in the timeline. The clock in my screens corner