Fix missing type declaration

This commit is contained in:
Wu Cheng-Han 2017-02-03 00:07:08 +08:00
parent 6c87262bd9
commit e67a6ad368
1 changed files with 1 additions and 1 deletions

View File

@ -2675,7 +2675,7 @@ editor.on('update', function () {
});
// clear tooltip which described element has been removed
$('[id^="tooltip"]').each(function (index, element) {
$ele = $(element);
var $ele = $(element);
if ($('[aria-describedby="' + $ele.attr('id') + '"]').length <= 0) $ele.remove();
});
});