Fix an error attempting to update missing value.
The original timezone display was attempting to be updated even when it was not displayed.
This commit is contained in:
parent
dbad2b51a4
commit
3cc49403c9
3
clock.js
3
clock.js
@ -32,7 +32,8 @@ function startTime(){
|
|||||||
hour:'2-digit',
|
hour:'2-digit',
|
||||||
minute:'2-digit',
|
minute:'2-digit',
|
||||||
second:'2-digit',});
|
second:'2-digit',});
|
||||||
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(display_origTZ){//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.
|
||||||
|
//~ alert("display_origTZ == " + display_origTZ);
|
||||||
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,
|
||||||
hourCycle:'h24',
|
hourCycle:'h24',
|
||||||
|
@ -15,6 +15,9 @@
|
|||||||
$scriptHour = date('O');
|
$scriptHour = date('O');
|
||||||
$scriptTZ = date_default_timezone_get();
|
$scriptTZ = date_default_timezone_get();
|
||||||
}
|
}
|
||||||
|
if($_POST['originalTZ']){
|
||||||
|
$orig_TZ_display = True;
|
||||||
|
}
|
||||||
} else{
|
} else{
|
||||||
$selectedTimezone = date_default_timezone_get();
|
$selectedTimezone = date_default_timezone_get();
|
||||||
$scriptTZ = date_default_timezone_get();
|
$scriptTZ = date_default_timezone_get();
|
||||||
@ -32,7 +35,7 @@
|
|||||||
<meta name="author" content="efrick"/>
|
<meta name="author" content="efrick"/>
|
||||||
<link href="/styles.css" type="text/css" rel="stylesheet"/>
|
<link href="/styles.css" type="text/css" rel="stylesheet"/>
|
||||||
<link href="clock.css" type="text/css" rel="stylesheet"/>
|
<link href="clock.css" type="text/css" rel="stylesheet"/>
|
||||||
<script>var current_tz=<?php echo json_encode($scriptTZ) . ',original_tz = ' . json_encode($originalTZ);?></script>
|
<script>var current_tz=<?php echo json_encode($scriptTZ) . ',original_tz = ' . json_encode($originalTZ) . ',display_origTZ = ' . json_encode($orig_TZ_display);?></script>
|
||||||
<script type="text/javascript" src="clock.js"></script>
|
<script type="text/javascript" src="clock.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user