/**
* jquery.admin.js
*
* Contain all handlers for admin page.
*/
( function( $ ) {
$( document ).ready( function() {
$( '.theme[aria-describedby*="beagency-lite"]' ).append( '
' + admin_vars.upgrade_available + '
' );
$( '.theme' ).click( function() {
var themeName = $( '.theme-info .theme-name' ).text();
if ( themeName.indexOf( 'BeAgency' ) >= 0 ) {
$( '.theme-overlay .theme-author' ).after( '' + admin_vars.upgrade_available + '
' + admin_vars.upgrade_info + '
' );
}
} );
$( '.plugin-title strong' ).each( function() {
if ( $( this ).text() == 'BeAgency Lite' ) {
$( this ).parent().append( '' + admin_vars.upgrade_info + '
' );
}
} );
} );
} )( jQuery );