Added result tracking

This commit is contained in:
Daniel Mason 2017-01-02 11:12:27 +13:00
parent 0c6a5f3833
commit b8794f6dc5
8 changed files with 167 additions and 47 deletions

View file

@ -1,4 +1,11 @@
function showLoginBox()
{
alert("login");
}
$(document).ready(function(){
$('#cover').on("click", function(){
$(this).hide();
$("#login").hide();
});
$("#loginTrigger").on("click", function(){
$("#cover").show();
$("#login").show();
});
});