mbenford / ngTagsInput

Tags input directive for AngularJS

Home Page:http://mbenford.github.io/ngTagsInput

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

autocomplete dropdown is behind keyboard on mobile

richardacre opened this issue · comments

need a way of making it a drop-up perhaps.

solved: the following CSS will make the drop-down into a drop-up
tags-input, tags-input div.host { position: relative; } tags-input auto-complete { position: absolute; bottom: 100%; width: 100%; } tags-input div.autocomplete.ng-scope { position: absolute; bottom: 0; }