mirror of
https://github.com/idanoo/nzart-exam-generator.git
synced 2024-12-04 14:23:10 +00:00
11 lines
225 B
JavaScript
Executable File
11 lines
225 B
JavaScript
Executable File
$(document).ready(function(){
|
|
$('#cover').on("click", function(){
|
|
$(this).hide();
|
|
$("#login").hide();
|
|
});
|
|
|
|
$("#loginTrigger").on("click", function(){
|
|
$("#cover").show();
|
|
$("#login").show();
|
|
});
|
|
}); |