| 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 |
|