We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff73936 commit 9f87fedCopy full SHA for 9f87fed
jqClock.js
@@ -165,7 +165,7 @@ if (!String.prototype.padStart) {
165
options.timeFormat = options.timeFormat || ((options.langSet=="en") ? "h:i:s A" : "H:i:s");
166
options.timezone = options.timezone || "localsystimezone"; //should only really be passed in when a server timestamp is passed
167
options.isDST = options.hasOwnProperty("isDST") ? options.isDST : sysDateObj.isDST(); //should only really be passed in when a server timestamp is passed
168
- options.rate = options.rate || 1000;
+ options.rate = options.rate || 500; //500ms makes for a more faithful clock than 1000ms, less skewing
169
170
//ensure we have true boolean values
171
if(typeof(options.calendar) === 'string'){
0 commit comments