graphql-engine/docs/_theme/djangodocs/pages/loading.html
2018-09-11 16:41:24 +05:30

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>