Skip to content

Commit

Permalink
encoded tooltip text issue
Browse files Browse the repository at this point in the history
  • Loading branch information
minalkumar2893 committed Jun 3, 2021
1 parent 812ac9e commit beb73c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tinymce4.x/footnotes/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ tinymce.PluginManager.add('footnotes', function(editor) {
fixFootnoteContent = (function () {
return encodeURIComponent(newfootnoteContent);
}()),
htmlTemplate = '<span class="fnoteWrap" id="#wk_ft{FOOTNOTE_INDEX}" contenteditable="false"><sup class="fnoteBtn" title="'+fixFootnoteContent+'" data-content="'+fixFootnoteContent+'">{FOOTNOTE_INDEX}</sup></span>&nbsp;',
htmlTemplate = '<span class="fnoteWrap" id="#wk_ft{FOOTNOTE_INDEX}" contenteditable="false"><sup class="fnoteBtn" title="'+newfootnoteContent+'" data-content="'+fixFootnoteContent+'">{FOOTNOTE_INDEX}</sup></span>&nbsp;',
totalFootNote = editor.getDoc().querySelectorAll('.fnoteBtn'),
totalCount = totalFootNote.length,
html;
Expand Down
2 changes: 1 addition & 1 deletion tinymce4.x/footnotes/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit beb73c5

Please sign in to comment.