Skip to content

Commit

Permalink
Update teller.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dfralan authored Jul 22, 2023
1 parent 425e687 commit 2b53d2f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions teller.js
Original file line number Diff line number Diff line change
Expand Up @@ -1833,10 +1833,14 @@ function kiujdgrsghsss(){
var zeroDate = localDate.toUTCString();
var zeroTime = ((zeroDate.split(" "))[4]).split(":");
var zeroInSec = (zeroTime[0]*3600)+(zeroTime[1]*60);
let a = h.slice(0, 5); a1 = a.split(":"); a2 = (a1[0]*3600)+(a1[1]*60); //openhour
let b = h.slice(6, 11); b1 = b.split(":"); b2 = (b1[0]*3600)+(b1[1]*60); //endhour
let a = h.slice(0, 5);
var a1 = a.split(":");
var a2 = (a1[0]*3600)+(a1[1]*60); //openhour
let b = h.slice(6, 11); b1 = b.split(":");
var b2 = (b1[0]*3600)+(b1[1]*60); //endhour
let pol = h.slice(12, 13)//operator (+ or -)
var c = h.slice(13, 18); c1 = c.split(":"); c2 = (c1[0]*3600)+(c1[1]*60);//gmt zone
var c = h.slice(13, 18); c1 = c.split(":");
var c2 = (c1[0]*3600)+(c1[1]*60);//gmt zone
let oh = 0;
let eh = 0;
getOhEh()
Expand Down

0 comments on commit 2b53d2f

Please sign in to comment.