I am new to Angularjs 1.6.. Project that i am currently working on needs to have a textbox validated only to enter numbers which currently works fine.. the issues is when i press letter "e" it doesn't work.. Please help me on this.. thanks.. here is my code..
<input
   type="number"
   class="form-control"
   name="days" 
   placeholder="Number of days"
   data-ng-model="$ctrl.my.scheduler"
   data-ng-pattern="/^[1-9]\d*$/;"
   required
>
 
     
    