%PDF- %PDF-
| Direktori : /home2/vacivi36/www2]/old/wp-content/plugins/templatesnext-toolkit/inc/meta-box/js/ |
| Current File : //home2/vacivi36/www2]/old/wp-content/plugins/templatesnext-toolkit/inc/meta-box/js/validate.js |
jQuery( function ( $ )
{
'use strict';
var $form = $( '#post' );
// Required field styling
$.each( rwmb.validationOptions.rules, function ( k, v )
{
if ( v['required'] )
{
$( '#' + k ).parent().siblings( '.rwmb-label' ).addClass( 'required' ).append( '<span>*</span>' );
}
} );
rwmb.validationOptions.invalidHandler = function ()
{
// Re-enable the submit ( publish/update ) button and hide the ajax indicator
$( '#publish' ).removeClass( 'button-primary-disabled' );
$( '#ajax-loading' ).attr( 'style', '' );
$form.siblings( '#message' ).remove();
$form.before( '<div id="message" class="error"><p>' + rwmb.summaryMessage + '</p></div>' );
};
$form.validate( rwmb.validationOptions );
} );