angular-summernote
angular-summernote copied to clipboard
Debounce on ngModelOptions doesn't work
Changing the link function to this works as intended. Debouncing doesn't work because you are updating the model anyway using the onchange callback. You were also attaching a watch every time the model value changes. I also didn't understand why you were appending the data every time it changed. This new link function works perfectly and the performance is perfect. #119