Update index.html
This commit is contained in:
parent
c77568cfbc
commit
1aa2712526
17
index.html
17
index.html
|
@ -64,23 +64,18 @@
|
|||
<tr>
|
||||
<td>
|
||||
<script>
|
||||
function show_image(src, width, height, alt) {
|
||||
var img = document.createElement("img");
|
||||
img.src = src;
|
||||
img.width = width;
|
||||
img.height = height;
|
||||
img.alt = alt;
|
||||
var current= new Date()
|
||||
var month=current.getMonth()
|
||||
var date=current.getDate()
|
||||
//document.write("DEBUG DATA: " + month)
|
||||
//document.write("DEBUG DATA: " + date)
|
||||
document.write("DEBUG DATA: " + month)
|
||||
document.write("DEBUG DATA: " + date)
|
||||
if (month=4 && date=13) {
|
||||
document.write("DEBUG DATA: condition was true")
|
||||
show_image('gate.gif', 100, 100, 'Load');
|
||||
//document.write("<img src='gate.gif'>")
|
||||
document.write("<img src='gate.gif'>")
|
||||
} else {
|
||||
show_image('load.png', 100, 100, 'Load');
|
||||
//document.write("<img src='load.png'>")
|
||||
document.write("DEBUG DATA: condition was false")
|
||||
document.write("<img src='load.png'>")
|
||||
}
|
||||
</script>
|
||||
</td>
|
||||
|
|
Loading…
Reference in a new issue