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 / common.js

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

28 lines 768 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * JavaScript code for all TablePress admin screens.
3 *
4 * @package TablePress
5 * @subpackage Views JavaScript
6 * @author Tobias Bäthge
7 * @since 1.0.0
8 */
9
10 /* globals postboxes, pagenow, jQuery */
11
12 /**
13 * Enable toggle/order functionality for post meta boxes.
14 * For TablePress, pagenow has the form "tablepress_{$action}".
15 *
16 * @since 1.0.0
17 */
18 postboxes.add_postbox_toggles( pagenow );
19
20 /**
21 * Turn off the collapsing feature of postboxes when directly clicking on the postbox header bar.
22 * This causes confusion to many users that accidentally click this.
23 * After this, the postboxes can only be collapsed/expanded via the arrow icon in their header bar.
24 *
25 * @since 2.1.0
26 */
27 jQuery( '.postbox .hndle' ).off( 'click.postboxes', postboxes.handle_click );
28