angular-summernote
angular-summernote copied to clipboard
Hint Option select not updating the ng-model
I found one issue while adding HTML node as a hint content.
Hint match option is '@a'. When user tried to type @a the dropdown with hint is shown
Hint options has a content function as below.
content: function (item) {
return $("<span><span class="label label-info">" + item.displayName + "</span><span> </span></span>")[0];
}
While I select from a hint option it seems that it does not update the ng-model and also not firing any on change event.
How should I resolve this?
https://github.com/summernote/summernote/pull/2160