PluginProbe
BeyondWords – AI audio for publishers / 4.7.0
BeyondWords – AI audio for publishers v4.7.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 / Component / Post / Panel / Inspect / js / inspect.js

inspect.js in BeyondWords – AI audio for publishers 4.7.0, at src/Component/Post/Panel/Inspect/js/inspect.js

25 lines 645 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* global jQuery, ClipboardJS */
2
3 jQuery( document ).ready( function ( $ ) {
4 const clipboard = new ClipboardJS( '#beyondwords__inspect--copy' );
5
6 clipboard.on( 'success', function () {
7 $( '#beyondwords__inspect--copy-confirm' ).show();
8 } );
9
10 $( 'body' ).on( 'click', '#beyondwords__inspect--remove', function () {
11 /* eslint-disable-next-line no-alert */
12 const confirm = window.confirm(
13 wp.i18n.__(
14 'Remove all BeyondWords data when the post is saved?',
15 'speechkit'
16 )
17 );
18
19 if ( confirm ) {
20 $( '#beyondwords_delete_content' ).removeAttr( 'disabled' );
21 $( '[data-beyondwords-metavalue]' ).val( '' );
22 }
23 } );
24 } );
25