Hi,
I have used tinyMCE 3.5 version. We use BR tag for enter key instead of P tag (default feature of tinyMCE). In this case if a user press enter key then auto-suggestion box doesn't open on @symbol.
Applied a condition into the function o(). After that issue have been fixed.
Code as below.
function o() {
var n = t((e.selection.getNode().outerHTML).replace("<br>"," ")),
r = n.text(),
i = r.substr(r.length - 1, 1);
return !!t.trim(i).length ? false : true
}
Please review it and add this into your original library.
Hi, I have used tinyMCE 3.5 version. We use BR tag for enter key instead of P tag (default feature of tinyMCE). In this case if a user press enter key then auto-suggestion box doesn't open on @symbol. Applied a condition into the function o(). After that issue have been fixed. Code as below.
Please review it and add this into your original library.