Your IP : 216.73.216.114


Current Path : /home/ereika83/public_html/wp-content/plugins/bbpowerpack/modules/pp-heading/js/
Upload File :
Current File : /home/ereika83/public_html/wp-content/plugins/bbpowerpack/modules/pp-heading/js/settings.js

(function($){

    /**
     * Use this file to register a module helper that
     * adds additional logic to the settings form. The
     * method 'FLBuilder._registerModuleHelper' accepts
     * two parameters, the module slug (same as the folder name)
     * and an object containing the helper methods and properties.
     */
    FLBuilder._registerModuleHelper('pp-heading', {

        /**
         * The 'rules' property is where you setup
         * validation rules that are passed to the jQuery
         * validate plugin (http://jqueryvalidation.org).
         *
         * @property rules
         * @type object
         */
        rules: {
            'font_icon_line_space': {
                number: true,
            },
            'heading_font_size': {
                number: true
            },
            'heading_line_height': {
                number: true
            },
            'heading_top_margin': {
                number: true
            },
            'sub_heading_font_size': {
                number: true
            },
            'sub_heading_line_height': {
                number: true
            },
            'sub_heading_top_margin': {
                number: true
            },
            'sub_heading_bottom_margin': {
                number: true
            },
            'separator_heading_top_margin': {
                number: true
            },
            'separator_heading_bottom_margin': {
                number: true
            },
            'line_width': {
                number: true
            },
            'line_height': {
                number: true
            },
            'font_icon_font_size': {
                number: true
            },
            'font_icon_border_width': {
                number: true
            },
            'font_icon_border_radius': {
                number: true
            },
            'font_icon_padding_top': {
                number: true
            },
            'font_icon_padding_bottom': {
                number: true
            },
            'font_icon_padding_left': {
                number: true
            },
            'font_icon_padding_right': {
                number: true
            },
            'font_icon_line_space': {
                number: true
            }
        },

        /**
         * The 'init' method is called by the builder when
         * the settings form is opened.
         *
         * @method init
         */
        init: function() {
			// var form = $('.fl-builder-settings'),
			//     separator = form.find( 'select[name="heading_separator"]' ),
			// 	self = this;

			// self._separatorChange( form, separator );

			// separator.on( 'change', function() {
			// 	self._separatorChange( form, $(this) );
			// } );
        },

		_separatorChange: function( $form, $field ) {
			if ( 'icon_only' !== $field.val() && 'line_with_icon' !== $field.val() && 'line_only' !== $field.val() ) {
				$form.find( 'select[name="heading_separator_postion"] option[value="left"]' ).hide();
				$form.find( 'select[name="heading_separator_postion"] option[value="right"]' ).hide();
			} else {
				$form.find( 'select[name="heading_separator_postion"] option[value="left"]' ).show();
				$form.find( 'select[name="heading_separator_postion"] option[value="right"]' ).show();
			}
		}

    });

})(jQuery);