Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Evolveum/midpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Sep 5, 2018
2 parents 72f20fa + 11bbea3 commit e7e8117
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -83,7 +83,7 @@
</span>
</div>
<div class="navbar-ajax">
<img id="ajax_busy" src="img/ajax-loader.gif" />
<img id="ajax_busy" src="img/ajax-loader.gif" style="display: inline; visibility: hidden;"/>
</div>

<!-- Navbar Right Menu -->
Expand Down
4 changes: 2 additions & 2 deletions gui/admin-gui/src/main/resources/static/js/midpoint-theme.js
Expand Up @@ -52,11 +52,11 @@ function initAjaxStatusSigns() {
}

function showAjaxStatusSign() {
document.getElementById('ajax_busy').style.display = 'inline';
document.getElementById('ajax_busy').style.visibility = 'visible';
}

function hideAjaxStatusSign() {
document.getElementById('ajax_busy').style.display = 'none';
document.getElementById('ajax_busy').style.visibility = 'hidden';
}

/**
Expand Down

0 comments on commit e7e8117

Please sign in to comment.