Fix missing type declaration
This commit is contained in:
parent
6c87262bd9
commit
e67a6ad368
1 changed files with 1 additions and 1 deletions
|
@ -2675,7 +2675,7 @@ editor.on('update', function () {
|
||||||
});
|
});
|
||||||
// clear tooltip which described element has been removed
|
// clear tooltip which described element has been removed
|
||||||
$('[id^="tooltip"]').each(function (index, element) {
|
$('[id^="tooltip"]').each(function (index, element) {
|
||||||
$ele = $(element);
|
var $ele = $(element);
|
||||||
if ($('[aria-describedby="' + $ele.attr('id') + '"]').length <= 0) $ele.remove();
|
if ($('[aria-describedby="' + $ele.attr('id') + '"]').length <= 0) $ele.remove();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue