balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

admin.js (488B)


      1 /* global redux_check_intro */
      2 
      3 /**
      4  * Description
      5  */
      6 
      7 ( function( $ ) {
      8 	'use strict';
      9 
     10 	$(function() {
     11 			$( '#theme-check > h2' ).html( $( '#theme-check > h2' ).html() + ' with Redux Theme-Check' );
     12 
     13 			if ( 'undefined' !== typeof redux_check_intro ) {
     14 				$( '#theme-check .theme-check' ).append( redux_check_intro.text );
     15 			}
     16 
     17 			$( '#theme-check form' ).append(
     18 				'&nbsp;&nbsp;<input name="redux_wporg" type="checkbox">  Extra WP.org Requirements.'
     19 			);
     20 		}
     21 	);
     22 }( jQuery ) );