(function($){ $(document).ready(function() { var max_ads= { 'home' : 3, 'pages' : 3, 'posts+custom_posts' : 3, 'categories+tags' : 3, 'widget' : 1, }, $area = $( 'input[name="adsns_area"]' ); $( '.wp-list-table.bws-plugins_page_adsense-plugin #the-list tr' ).each( function(e) { if ( ! $( this ).find( '.adsns_adunit_ids' ).is( ':checked' ) ) { $( this ).find( '.adsns_adunit_position' ).attr( 'disabled', true ); } }); $( '.wp-list-table.bws-plugins_page_adsense-plugin #the-list tr' ).click( function(e) { var $row = $( this ), $cb = $( this ).find( '.adsns_adunit_ids' ); if ( ! $( e.target ).closest( '.adsns_adunit_ids, .adsns_adunit_position' ).length ) { $cb.trigger( 'click' ); } }); if( max_ads[ $area.val() ] == $( '.adsns_adunit_ids' ).filter( ':checked' ).length ) { $( '.adsns_adunit_ids' ).filter( ':not(:checked)' ).attr( 'disabled', true ); } var notices = { new_settings : function() { $( '.adsns_settings_notice' ).hide(); $( '.adsns_new_settings_notice' ).show(); } } $( notices ).bind( 'control', function(){ this.new_settings(); }); $( '.wp-list-table.bws-plugins_page_adsense-plugin select' ).change( function() { $( notices ).trigger( 'control' ); }); $( '.adsns_adunit_ids' ).change( function(e) { var $cb = $( this ), $row = $cb.parents( 'tr' ); if ( $( '.adsns_adunit_ids' ).filter( ':checked' ).length >= max_ads[ $area.val() ] ) { $( '.adsns_adunit_ids' ).filter( ':not(:checked)' ).attr( 'disabled', true ); } else { $( '.adsns_adunit_ids' ).filter( ':not(:checked)' ).attr( 'disabled', false ); } if ( $cb.is( ':checked' ) ) { $row.find( '.adsns_adunit_position' ).attr( 'disabled', false ); } else { $row.find( '.adsns_adunit_position, .adsns_adunit_order' ).attr( 'disabled', true ); } $( notices ).trigger( 'control' ); }); }); })(jQuery);