Initial UI Commit, still rather rough

This commit is contained in:
Jason White
2014-08-11 18:48:29 -04:00
parent f6437cf28c
commit c4d9bacfbc
79 changed files with 54589 additions and 175 deletions

View File

@ -0,0 +1,5 @@
function displayGreeting(name) {
if (name != ''){
document.getElementById("greeting").innerHTML="Hello, " + name+ "!";
}
}