angular-block-ui
angular-block-ui copied to clipboard
When unblocking the UI wait cursor doesn't go away on IE 10
trafficstars
Ref: the same in https://github.com/malsup/blockui/issues/59
Workarround:
add in css:
.block-ui-active-cursor-default > .block-ui-container { cursor: default; }
modify in js
$scope.$watch('$_blockUiState.blockCount > 0', function (value) {
$element.toggleClass('block-ui-active', !!value);
$element.toggleClass('.block-ui-active-cursor-default', !value);
});
Sory. my workarround doesnt work :( the real problem is Explores has a 2seg delay. I undesrtand the porblem better I need to move the cursor in IE10 to refresh haha
Any update on this issue?
Any Update? Facing same issue in IE 11 as well.