I have an input field, I want to show a popover only when user types into the field and I don't want to show the popover for the first time when the input field is empty. I have written the following code but it shows the popover for the first time I click on it ! Any way to fix that? here is the plnkr to show the issue:
http://plnkr.co/edit/d6WzzJYgDHlBmx1Pfb9L?p=preview
<input type="text"
value="Click me!"
ng-model="value"
popover-is-open="!!value"
uib-popover="This must be shown when use has typed value"
popover-trigger="focus"
class="form-control">
Try this code please, I changed click to change.
Tell me,
thanks!