PluginProbe
BeyondWords – AI audio for publishers / 4.2.4
BeyondWords – AI audio for publishers v4.2.4
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 / Core / Settings / classic.js

classic.js in BeyondWords – AI audio for publishers 4.2.4, at src/Core/Settings/classic.js

23 lines 523 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* global jQuery */
2
3 ( function ( $ ) {
4 'use strict';
5
6 $(
7 '#beyondwords-plugin-settings .beyondwords-setting-categories-all input'
8 ).on( 'change', function () {
9 if ( this.checked ) {
10 $(
11 '#beyondwords-plugin-settings .beyondwords-setting-categories-term'
12 ).hide();
13 $(
14 '#beyondwords-plugin-settings .beyondwords-setting-categories-term input'
15 ).prop( 'checked', false );
16 } else {
17 $(
18 '#beyondwords-plugin-settings .beyondwords-setting-categories-term'
19 ).show();
20 }
21 } );
22 } )( jQuery );
23