I have the following markup
<input type="search" placeholder="Search by customer, material, document, plant, ..."
ng-model="qt" ng-mode-options="{ updateOn: 'default blur', debounce: {default:3000, blur:10} }"
ng-change="onQtChange(qt)" type="submit">
In a plunkr it behaves correctly - change is delayed normally but on blur fired immediately. But in ionic, all changes are fired immediately.
What am I missing? Thanks.