[DE PE SSE] Fix hide alt hints
This commit is contained in:
parent
97c43902d3
commit
49b2001f3d
|
@ -171,7 +171,7 @@ Common.UI.HintManager = new(function() {
|
||||||
var _hideHints = function() {
|
var _hideHints = function() {
|
||||||
_hintVisible = false;
|
_hintVisible = false;
|
||||||
_currentHints && _currentHints.forEach(function(item) {
|
_currentHints && _currentHints.forEach(function(item) {
|
||||||
item.hide()
|
item.remove()
|
||||||
});
|
});
|
||||||
clearInterval(_inputTimer);
|
clearInterval(_inputTimer);
|
||||||
};
|
};
|
||||||
|
@ -571,6 +571,13 @@ Common.UI.HintManager = new(function() {
|
||||||
if (isComplete) {
|
if (isComplete) {
|
||||||
_isComplete = true;
|
_isComplete = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($('.hint-div').length > 0) {
|
||||||
|
$('.hint-div').remove();
|
||||||
|
}
|
||||||
|
if ($('iframe').length > 0) {
|
||||||
|
$('iframe').contents().find('.hint-div').remove();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var _isHintVisible = function () {
|
var _isHintVisible = function () {
|
||||||
|
|
Loading…
Reference in a new issue