mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
408600ce58
git-svn-id: http://svn.automattic.com/wordpress/trunk@9291 1a063a9b-81f0-0310-95a4-ce76da25c4cd
27 lines
683 B
JavaScript
27 lines
683 B
JavaScript
(function($) {
|
|
columns = {
|
|
init : function(page) {
|
|
$('.hide-column-tog').click( function() {
|
|
var column = jQuery(this).val();
|
|
var show = jQuery(this).attr('checked');
|
|
if ( show ) {
|
|
jQuery('.column-' + column).show();
|
|
} else {
|
|
jQuery('.column-' + column).hide();
|
|
}
|
|
save_manage_columns_state(page);
|
|
} );
|
|
|
|
}
|
|
}
|
|
}(jQuery));
|
|
|
|
function save_manage_columns_state(page) {
|
|
var hidden = jQuery('.manage-column').filter(':hidden').map(function() { return this.id; }).get().join(',');
|
|
jQuery.post(columnsL10n.requestFile, {
|
|
action: 'hidden-columns',
|
|
hidden: hidden,
|
|
hiddencolumnsnonce: jQuery('#hiddencolumnsnonce').val(),
|
|
page: page
|
|
});
|
|
} |