Skip to content

Commit

Permalink
fix missing param
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRDOrazio committed Feb 26, 2024
1 parent ced9d02 commit 9c4a7bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jqClock.js
Expand Up @@ -871,7 +871,7 @@ if (!Number.prototype.map) {
//IF A TIMESTAMP HAS BEEN PASSED IN
if (options.timestamp != "localsystime") {
if ( seemsToBePHPTimestamp( options, sysDateObj ) ) {
options = normalizePHPTimestamp( options );
options = normalizePHPTimestamp( options, sysDateObj );
}
else {
options.sysdiff = options.timestamp - sysDateObj.getTime();
Expand Down

0 comments on commit 9c4a7bd

Please sign in to comment.