Fix Bug 58979
This commit is contained in:
parent
6424f38e7d
commit
fe6f3b9820
|
@ -675,7 +675,9 @@ Common.UI.HintManager = new(function() {
|
|||
$('.hint-div').remove();
|
||||
}
|
||||
if ($('iframe').length > 0) {
|
||||
$('iframe').contents().find('.hint-div').remove();
|
||||
try {
|
||||
$('iframe').contents().find('.hint-div').remove();
|
||||
} catch (e) {}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue