Skip to content

Commit

Permalink
busy icon small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Jan 25, 2018
1 parent 467079c commit d0afa4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gui/admin-gui/src/main/resources/static/js/midpoint-theme.js
Expand Up @@ -34,7 +34,8 @@ function clickFuncWicket6(eventData) {
|| (clickedElement.tagName.toUpperCase() == 'INPUT'
&& (clickedElement.type.toUpperCase() == 'BUTTON'
|| clickedElement.type.toUpperCase() == 'SUBMIT')))
&& clickedElement.parentNode.id.toUpperCase() != 'NOBUSY' ) {
&& clickedElement.parentNode.id.toUpperCase() != 'NOBUSY'
&& clickedElement.disabled == 'false') {
showAjaxStatusSign();
}
}
Expand Down

0 comments on commit d0afa4e

Please sign in to comment.