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