commit
3e18d5191c
|
@ -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);
|
||||||
};
|
};
|
||||||
|
@ -531,7 +531,11 @@ Common.UI.HintManager = new(function() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_needShow = (e.keyCode == Common.UI.Keys.ALT && (!Common.Utils.ModalWindow.isVisible()) && _isDocReady && _arrAlphabet.length > 0);
|
var isAlt = e.keyCode == Common.UI.Keys.ALT;
|
||||||
|
_needShow = (isAlt && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0);
|
||||||
|
if (isAlt) {
|
||||||
|
e.preventDefault();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -567,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