%PDF- %PDF-
| Direktori : /home/vacivi36/backupsite/public_html/old/wp-content/plugins/meta-box/js/ |
| Current File : /home/vacivi36/backupsite/public_html/old/wp-content/plugins/meta-box/js/validate.js |
jQuery( function ( $ ) {
'use strict';
var rules = {
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>' + rwmbValidate.summaryMessage + '</p></div>' );
},
ignore: ':not([class|="rwmb"])'
};
// Edit post form.
var $form = $( '#post' );
// Edit user form.
if ( ! $form.length ) {
$form = $( '#your-profile' );
}
// Edit term form.
if ( ! $form.length ) {
$form = $( '#edittag' );
}
// Gather all validation rules.
$( '.rwmb-validation-rules' ).each( function () {
var subRules = $( this ).data( 'rules' );
$.extend( true, rules, subRules );
// Required field styling
$.each( subRules.rules, function ( k, v ) {
if ( v['required'] ) {
$( '#' + k ).parent().siblings( '.rwmb-label' ).addClass( 'required' ).append( '<span>*</span>' );
}
} );
} );
// Execute.
$form.validate( rules );
} );