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