2 Comments

When I stopped Block UI the wait cursor remained until I moved the mouse.

To fix this problem I changed the Block UI css (I moved the “cursor: wait” from the class .block-ui-container to the class .block-ui-active):

 

.block-ui-container {
  position: absolute;
  z-index: 10000;
  top: 0; right: 0; bottom: 0; left: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  filter: alpha(opacity=00);
}

.block-ui-active {
    cursor: wait;
}

2 Replies to “Fix: wait cursor hang with AngularJS Block UI”

  1. oh, man, thank you for this! i just googled “angular blockui cursor” and found solution of my problem!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Related Posts