I have an AngularJS directive and is called in the Jade Template with:
input(auto-complete, ui-items='merchants.name', ng-model='selected')
I need to have it auto-completeas it is (unsigned =), but it displays as
<input class="ng-pristine ng-valid" ng-model="selected" ui-items="merchants.name" auto-complete="auto-complete">
How can i delete ="auto-complete"?
source
share