I am using angularjs with bootstrap. Calender is displaying after clicking on input field but not get closed if I clicked outside of calender. Its working fine for Desktop web browsers but not working in iPad.
My code for calender is
<input type="text" ng-mouseover="clickHover18=true"
ng-mouseleave="clickHover18=false" ng-focus="clickActive18=true"
ng-blur="clickActive18=false" class="cal-control scheduleMargin r3InputField"
id="selectupgradeEvcTime" datepicker-popup="{{format}}"
placeholder="MM/DD/YY" ng-model="$parent.dateSelection" is-open="opened"
min="minDate" max="'2025-12-31'" datepicker-options="dateOptions"
date-disabled="disabled(date, mode)" ng-required="'true'"
close-text="Close" ng-keypress-disabled />
<span class="cal-icon cal-icon-date dataMargin">
</span>
Please suggest me solution for iPad.