I have integrated requirejs with angular app.. before intregrating requirejs,
<input type="number" value="{{cart.quantity}}" ng-model="cart.quantity" />
was showing the value in input box.
But after integrating with requirejs, input box with type="number" not showing me the value..
input box with type="text" is working.
How can I show value with type="number" ?
Thanks
valueandng-model? ngModel will place cart.quantity into your input automatically!