mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +03:00
17 lines
401 B
HTML
17 lines
401 B
HTML
<div class="noprojects_overley hide">
|
|
<div class="loader"></div>
|
|
<div class="subhead_wrapper_loader body_content_position"></div>
|
|
<div class="overley_wrapper"></div>
|
|
</div>
|
|
|
|
|
|
<script type="text/javascript">
|
|
const showLoading = function() {
|
|
$('.noprojects_overley').removeClass('hide');
|
|
};
|
|
|
|
const hideLoading = function() {
|
|
$('.noprojects_overley').addClass('hide');
|
|
};
|
|
</script>
|