We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm having issues getting two instances working on the same page. The first instance displays the dropdown but the second does not.
I saw the previous issue from 2015 and can't get that working even if I update the JS and css file locations. #26
I've included my code below. I'd appreciate your thoughts on this.
`
` Thanks
Mark
The text was updated successfully, but these errors were encountered:
Can you create a fiddle reproducing the problem?
Sorry, something went wrong.
The updated fiddle seems to work.
Thanks Steven. There seems to be a compatibility issue with TinyMCE 5.0+. Works with 4.x but not 5. See example fiddle
No branches or pull requests
Hi,
I'm having issues getting two instances working on the same page.
The first instance displays the dropdown but the second does not.
I saw the previous issue from 2015 and can't get that working even if I update the JS and css file locations.
#26
I've included my code below.
I'd appreciate your thoughts on this.
`
<style> </style> <script src="./tinymce/js/tinymce/tinymce.min.js"></script> <script src="./js/jquery/jquery-3.3.1.js"></script> <script> tinymce.init({ selector: 'textarea#section2', height: 500, menubar: false, statusbar: false, plugins: [ 'mention' ], mentions: { source: [ { name: 'name 1'}, { name: 'name 2'}, { name: 'name 3'}, { name: 'name 4'} ] } }); tinymce.init({ selector: 'textarea#section3', height: 500, menubar: false, statusbar: false, plugins: [ 'mention' ], mentions: { source: [ { name: 'name 1'}, { name: 'name 2'}, { name: 'name 3'}, { name: 'name 4'} ] } }); </script> <textarea id="section2" > </textarea> <textarea id="section3" > </textarea>`
Thanks
Mark
The text was updated successfully, but these errors were encountered: