Evan Sharp
Evan Sharp
Yes, it currently works in IE; this is a major issue.
:+1:
This library doesn't create a new event listener each time the directive is used. It creates 3 listeners (`touchmove`, `touchend` and `click`) once; when the directive is first used/instantiated. These...
`'*'` is a special case; filter everything. The line you reference with `OffClickFilterCache['*'] || []`is basically saying to get the list of things that filter everything. You would use `off-click-filter="'*'"`...
That makes sense. Since this is "off-click" and we could go as far as `touch == click`. But `dragging != click` and should not trigger off-click.
Not sure I understand what you are asking here. [ngChange](https://docs.angularjs.org/api/ng/directive/ngChange) should fire when a value is selected.
Yeah, so it appears that based on everything else that is going on in this directive that when the internal `$modelValue` is falsey it will not update the view. Work-around,...
But what version of angular?
duplicate of #34 fixed in 19923ab please use the latest version.
It doesn't really do anything if there is no ngModel attach to the element (the uib match shouldn't have an ngModel). see: https://github.com/TheSharpieOne/angular-validation-match/blob/a2056d2cf4f3b7e2000aee21be7c7c6cd18cb9c6/src/angular-validation-match.js#L12-L14 Also, what makes more sense, EVERYONE except...