graphql-engine/docs-old/_theme/djangodocs/pages/loading.html
Rikin Kachhia cc30f08f6e docs: move docs-new to docs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4261
GitOrigin-RevId: 3d80068acdd61b5350fc36ec3444db47508f9c09
2022-04-13 12:01:50 +00:00

17 lines
530 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() {
Array.from(document.getElementsByClassName('loading_overlay')).forEach(el => el.classList.remove('hide'));
};
const hideLoading = function() {
Array.from(document.getElementsByClassName('loading_overlay')).forEach(el => el.classList.add('hide'));
};
</script>