mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 21:58:09 +08:00
[DE PE SSE] Fix hide alt hints
This commit is contained in:
@ -171,7 +171,7 @@ Common.UI.HintManager = new(function() {
|
||||
var _hideHints = function() {
|
||||
_hintVisible = false;
|
||||
_currentHints && _currentHints.forEach(function(item) {
|
||||
item.hide()
|
||||
item.remove()
|
||||
});
|
||||
clearInterval(_inputTimer);
|
||||
};
|
||||
@ -571,6 +571,13 @@ Common.UI.HintManager = new(function() {
|
||||
if (isComplete) {
|
||||
_isComplete = true;
|
||||
}
|
||||
|
||||
if ($('.hint-div').length > 0) {
|
||||
$('.hint-div').remove();
|
||||
}
|
||||
if ($('iframe').length > 0) {
|
||||
$('iframe').contents().find('.hint-div').remove();
|
||||
}
|
||||
};
|
||||
|
||||
var _isHintVisible = function () {
|
||||
|
||||
Reference in New Issue
Block a user