I'm looking for a way to capture double-click event, using ng-dblclick in md-chip directive.
but every-time I double click over the input field it gives me the following error. I suspect that it doesn't support ng-dblclick.
Client side code
<md-chips ng-model="keyset3"
name="keyset3"
readonly="readonly"
md-removable="removable"
md-max-chips="5"
placeholder="Enter a Keyword..."
ng-dblclick="fieldDoubleClick('keyset3')">
<md-chip-template>
<strong>{{$chip}}</strong>
</md-chip-template>
</md-chips>
Any help is greatly appreciated.
Earlier fieldDoubleClick Implementation
New fieldDoubleClick Imp
Solution - The model for the chip need to be an Array. (Provided by - Matthew Cawley)