angularjs - Microsoft Edge - Angular Input Bug? -


this works on chrome, ff , safari. in edge when left click in input field, seems on mouseup event input loses focus , cursor leaves input random element above. can tab input , can right click bring copy/paste menu, click elsewhere on page, , cursor stays in input.

<div class="card" ng-repeat="prod in product" ng-if='ngcart.itemincart(prod.id)'>   <div id="{{prod.id}}" count="{{prod.count}}" class="card-info col-md-12" ng-click="showinfo(prod.id)">     <div ng-if="prod.count == 0" class="info-form pink-active col-md-12">        <div ng-if="prod.id == '11'" class="col-md-12">            <input type="text"/>        </div>     </div>   </div> </div> 

any idea how can troubleshoot this? again, works in other browsers. client using edge, have fix this.

update: if left click in input , move mouse outside input before release left button, cursor stays in input, again mouseup event what's breaking this. thanks!


Comments

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -