Merge pull request 'Resolution for #1' (#2) from timefix into master

Reviewed-on: #2
This commit is contained in:
20xd6 2020-09-27 17:17:30 -04:00
commit 004fe37680
2 changed files with 2 additions and 6 deletions

View File

@ -18,14 +18,12 @@ function startTime(){
+ current_time.toLocaleString('en-US', + current_time.toLocaleString('en-US',
{timeZone: current_tz, {timeZone: current_tz,
hourCycle:'h24', hourCycle:'h24',
timeStyle:'long',
hour: '2-digit', hour: '2-digit',
minute:'2-digit', minute:'2-digit',
second:'2-digit', second:'2-digit',
timeZoneName:'short'}); timeZoneName:'short'});
document.getElementById('time_body').innerHTML = current_time.toLocaleString('en-EN' ,{ document.getElementById('time_body').innerHTML = current_time.toLocaleString('en-EN' ,{
timeZone: current_tz, timeZone: current_tz,
dateStyle:'long',
hourCycle:'h24', hourCycle:'h24',
weekday:'short', weekday:'short',
month:'short', month:'short',
@ -37,7 +35,6 @@ function startTime(){
if(original_tz){//Test if there is a non-null value for original_tz. If True then the part of the page this pertains to is being displayed. if(original_tz){//Test if there is a non-null value for original_tz. If True then the part of the page this pertains to is being displayed.
document.getElementById('time_original').innerHTML = current_time.toLocaleString('en-EN' ,{ document.getElementById('time_original').innerHTML = current_time.toLocaleString('en-EN' ,{
timeZone: original_tz, timeZone: original_tz,
dateStyle:'long',
hourCycle:'h24', hourCycle:'h24',
weekday:'short', weekday:'short',
month:'short', month:'short',

View File

@ -109,14 +109,13 @@
<br/> <br/>
<label for="originalTZ">Display original timezone</label> <label for="originalTZ">Display original timezone</label>
<input type="checkbox" name="originalTZ" value="origTZ"> <input type="checkbox" name="originalTZ" value="origTZ">
<span class="chkbox> <span class="chkbox">
<label for="displayOffset">Display offset of selected timezones</label> <label for="displayOffset">Display offset of selected timezones</label>
<input type="checkbox" name="displayOffset" value="disOS"/> <input type="checkbox" name="displayOffset" value="disOS"/>
</span> </span>
</form> </form>
<p id="JStz"><?php echo date("e");?></p> <p id="JStz"><?php echo date("e");?></p>
<h3>Timer</h3>
<a href="timer/" title="The timer page">Timer</a>
</div><!--end of "body" div--> </div><!--end of "body" div-->
</body> </body>
</html> </html>