fix mobile text editor display

This commit is contained in:
zadam
2019-06-30 20:14:57 +02:00
parent 1ea0d283de
commit af21dd4463
3 changed files with 9 additions and 5 deletions

View File

@@ -338,7 +338,9 @@ class TabContext {
}
closeAutocomplete() {
this.$tabContent.find('.aa-input').autocomplete('close');
if (utils.isDesktop()) {
this.$tabContent.find('.aa-input').autocomplete('close');
}
}
}