Update index.html

This commit is contained in:
Innovation Inc 2019-09-18 14:11:32 -05:00 committed by GitHub
parent 1aa2712526
commit 0d05a1d8b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,18 +64,18 @@
<tr>
<td>
<script>
var current= new Date()
var month=current.getMonth()
var date=current.getDate()
document.write("DEBUG DATA: " + month)
document.write("DEBUG DATA: " + date)
var current= new Date();
var month=current.getMonth();
var date=current.getDate();
function loadImage(image) {
var x = document.createElement("IMG");
x.setAttribute("src", image);
document.body.appendChild(x);
}
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'>")
loadImage("gate.gif");
} else {
document.write("DEBUG DATA: condition was false")
document.write("<img src='load.png'>")
loadImage("load.png");
}
</script>
</td>