File "settings.js"

Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/bb-plugin/modules/pricing-table/js/settings.js
File size: 468 bytes
MIME-type: --
Charset: utf-8

(function($){

	FLBuilder.registerModuleHelper('pricing-table', {
		rules: {},

		init: function()
		{
			$( 'input[name=btn_bg_color]' ).live( 'change', this._bgColorChange );			
			this._bgColorChange();
		},
		
		_bgColorChange: function()
		{
			var bgColor = $( 'input[name=btn_bg_color]' ),
				style   = $( '#fl-builder-settings-section-btn_style' );

			if ( '' == bgColor.val() ) {
				style.hide();
			}
			else {
				style.show();
			}
		}
	});

})(jQuery);