PluginProbe
BeyondWords – AI audio for publishers / 7.0.0
BeyondWords – AI audio for publishers v7.0.0
7.1.0 trunk 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.1.0 4.1.1 4.1.2 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.3.0 4.4.0 4.5.0 4.5.1 4.6.0 4.6.1 4.6.2 4.7.0 All 43 releases
speechkit / src / editor / components / add-player / tinymce.js

tinymce.js in BeyondWords – AI audio for publishers 7.0.0, at src/editor/components/add-player/tinymce.js

21 lines 556 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* global tinymce */
2
3 ( function () {
4 tinymce.PluginManager.add( 'beyondwords_player', function ( editor, url ) {
5 editor.addCommand( 'beyondwords_insert_player', function () {
6 const playerElement =
7 '<div data-beyondwords-player="true" contenteditable="false"></div>\uFEFF';
8
9 editor.execCommand( 'mceInsertContent', false, playerElement );
10 } );
11
12 const image = url + '/tinymce-button.png';
13
14 editor.addButton( 'beyondwords_player', {
15 title: 'Insert BeyondWords player',
16 cmd: 'beyondwords_insert_player',
17 image,
18 } );
19 } );
20 } )();
21