PluginProbe
TablePress – Tables in WordPress made easy / trunk
TablePress – Tables in WordPress made easy vtrunk
3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.12 1.14 1.9.2 2.0.4 2.1.7 2.1.8 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3 2.3.1 2.3.2 2.4 2.4.1 2.4.2 2.4.3 2.4.4 All 44 releases
tablepress / admin / js / edit.js

edit.js in TablePress – Tables in WordPress made easy trunk, at admin/js/edit.js

37 lines 796 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * JavaScript code for the "Edit" screen.
3 *
4 * @package TablePress
5 * @subpackage Views JavaScript
6 * @author Tobias Bäthge
7 * @since 2.0.0
8 */
9
10 /**
11 * Load the default "Edit" screen sections.
12 */
13 import './edit/header-bar';
14 import './edit/table-information';
15 import './edit/table-manipulation';
16 import './edit/table-options';
17 import './edit/datatables-features';
18 import './edit/table-preview';
19
20 /**
21 * Load the non-React "Edit" screen JavaScript code, mostly for the table data editor.
22 */
23 import './edit/editor';
24 import './edit/keyboard-shortcuts';
25 import './edit/screen-options';
26
27 /**
28 * Internal dependencies.
29 */
30 import { initializeReactComponent } from './common/react-loader';
31 import Screen from './edit/screen';
32
33 initializeReactComponent(
34 'tablepress-edit-screen',
35 <Screen />,
36 );
37