mirror of
https://github.com/aaronleetw/Attendance.git
synced 2024-11-15 03:21:38 -08:00
8 lines
181 B
JavaScript
8 lines
181 B
JavaScript
|
function loadingAnimation() {
|
||
|
if ($('#subuser_form_sel').val == '')
|
||
|
return;
|
||
|
$('#subuser_form_sel').submit();
|
||
|
$('.container').hide();
|
||
|
$('#loading').show();
|
||
|
}
|