PATH:
home
/
lab2454c
/
gemition.com
/
wp-content
/
plugins
/
colorlib-login-customizer
/
assets
/
js
( function( $ ) { var clcCustomCSS = { selectors: {}, settings: {}, style: '', init: function( settings, selectors ) { this.selectors = selectors; this.settings = settings; this.style = $( '#clc-style' ); this._binds(); }, _binds: function() { var self = this; $.each( self.settings, function( index, setting ) { wp.customize( setting.name, function( value ) { value.bind( function( to ) { self.settings[ index ].value = to; self.createCSSLines(); } ); } ); }); }, createCSSLines: function() { var style = '', self = this; $.each( self.selectors, function( index, selector ) { var cssLine = index + '{'; $.each( selector, function( index, option ) { cssLine = cssLine + self.generateCSSLine( option ); }); style = style + cssLine + '}'; }); self.style.html( style ); }, generateCSSLine: function( option ) { var line = this.settings[ option ].attribute + ':'; if ( '' === this.settings[ option ].value && 'custom-logo' !== option ) { return ''; } if ( undefined === this.settings[ option ].attribute || undefined === this.settings[ option ].value ) { return ''; } if ( $.inArray( this.settings[ option ].attribute, [ 'width', 'min-width', 'max-width', 'background-size', 'height', 'min-height', 'max-height', 'font-size' ] ) >= 0 ) { line += this.settings[ option ].value + 'px'; } else if ( 'background-image' === this.settings[option].attribute ) { if ( this.settings[option].value.length ) { line += 'url(' + this.settings[option].value + ') !important;'; } else { line += 'url(wp-admin/images/wordpress-logo.svg) !important;'; } } else if ( 'display' === this.settings[option].attribute ) { // We replaced toggle with select so we need to make sure // h1 displays correctly if ( 'clc-options[logo-settings]' != this.settings[option].name ) { if ( this.settings[option].value ) { line += 'none'; } else { line += 'block'; } } else { if ( 'hide-logo' === this.settings[option].value ) { line += 'none'; } else { line += 'block'; } } } else { line += this.settings[ option ].value; } line += ';'; return line; } }; clcCustomCSS.init( CLC.settings, CLC.selectors ); // Live edits /* Columns */ wp.customize( 'clc-options[columns]', function( value ) { value.bind( function( to ) { if ( '2' === to ) { $( 'body' ).addClass( 'ml-half-screen' ); } else { $( 'body' ).removeClass( 'ml-half-screen' ); } } ); } ); // Change classes base on what logo settings are enabled wp.customize( 'clc-options[logo-settings]', function ( settings ) { settings.bind( function ( value ) { if ( 'show-text-only' === value ) { $( 'body' ).removeClass( 'clc-both-logo' ).addClass( 'clc-text-logo' ); } else if ( 'use-both' === value ) { $( 'body' ).removeClass( 'clc-text-logo' ).addClass( 'clc-both-logo' ); } else { $( 'body' ).removeClass( 'clc-text-logo clc-both-logo'); } } ); } ); wp.customize( 'clc-options[logo-title]', function( value ) { value.bind( function( to ) { $( '#logo-text' ).text( to ); } ); } ); // logo title wp.customize( 'clc-options[logo-title]', function( value ) { value.bind( function( to ) { $( '#clc-logo-link' ).attr( 'title', to ); } ); } ); /* Column Align */ wp.customize( 'clc-options[form-column-align]', function( value ) { value.bind( function( to ) { $( 'body' ).removeClass( 'ml-login-align-1 ml-login-align-2 ml-login-align-3 ml-login-align-4' ).addClass( 'ml-login-align-' + to ); } ); } ); /* Column Vertical Align */ wp.customize( 'clc-options[form-vertical-align]', function( value ) { value.bind( function( to ) { $( 'body' ).removeClass( 'ml-login-vertical-align-1 ml-login-vertical-align-2 ml-login-vertical-align-3' ).addClass( 'ml-login-vertical-align-' + to ); } ); } ); /* Column Horizontal Align */ wp.customize( 'clc-options[form-horizontal-align]', function( value ) { value.bind( function( to ) { $( 'body' ).removeClass( 'ml-login-horizontal-align-1 ml-login-horizontal-align-2 ml-login-horizontal-align-3' ).addClass( 'ml-login-horizontal-align-' + to ); } ); } ); // Custom CSS wp.customize( 'clc-options[custom-css]', function( value ) { value.bind( function( to ) { $( '#clc-custom-css' ).text( to ); } ); } ); // Username label wp.customize( 'clc-options[username-label]', function( value ) { value.bind( function( to ) { $( '#clc-username-label' ).html( to ); } ); } ); // Password label wp.customize( 'clc-options[password-label]', function( value ) { value.bind( function( to ) { $( '#clc-password-label' ).text( to ); } ); } ); // Remember Me label wp.customize( 'clc-options[rememberme-label]', function( value ) { value.bind( function( to ) { $( '#clc-rememberme-label' ).text( to ); } ); } ); // Logo url wp.customize( 'clc-options[logo-url]', function( value ) { value.bind( function( to ) { $( 'a#clc-logo-link' ).attr('href', to ); } ); } ); // Lost password text wp.customize( 'clc-options[lost-password-text]', function( value ) { value.bind( function( to ) { $( '#clc-lost-password-text' ).text( to ); } ); } ); // Back to site text wp.customize( 'clc-options[back-to-text]', function( value ) { value.bind( function( to ) { $( '#clc-back-to-text' ).html( '← ' + to ); } ); } ); // Login label wp.customize( 'clc-options[login-label]', function( value ) { value.bind( function( to ) { if( ! to ) { return; } $( '#loginform input[name="wp-submit"]' ).val( to ); } ); } ); // Register username label wp.customize( 'clc-options[register-username-label]', function( value ) { value.bind( function( to ) { $( '#clc-register-sername-label' ).html( to ); } ); } ); // Register email label wp.customize( 'clc-options[register-email-label]', function( value ) { value.bind( function( to ) { $( '#clc-register-email-label' ).html( to ); } ); } ); // Register confirmation text wp.customize( 'clc-options[register-confirmation-email]', function( value ) { value.bind( function( to ) { $( '#reg_passmail' ).html( to ); } ); } ); // Register button text wp.customize( 'clc-options[register-button-label]', function( value ) { value.bind( function( to ) { if( ! to ) { return; } $( '#registerform input[name="wp-submit"]' ).val( to ); } ); } ); // Register link text wp.customize( 'clc-options[register-link-label]', function( value ) { value.bind( function( to ) { if( ! to ) { return; } $( '#register-link-label' ).text( to ); } ); } ); // Login link text wp.customize( 'clc-options[login-link-label]', function( value ) { value.bind( function( to ) { if( ! to ) { return; } $( '#login-link-label' ).text( to ); } ); } ); // Logo width wp.customize( 'clc-options[logo-width]', function ( value ) { value.bind( function ( to ) { if ( !to ) { return; } var h_size = wp.customize( 'clc-options[logo-height]' )._value + 'px '; var pad_t = ( 30 + parseInt(wp.customize( 'clc-options[logo-height]' )._value) ) + 'px '; var mar_top = ( 0 - (30 + parseInt(wp.customize( 'clc-options[logo-height]' )._value) )) + 'px '; var w_size = to + 'px '; $( '.login.clc-both-logo h1 a' ).css( { 'margin-top': mar_top, 'background-size': w_size + h_size, 'padding-top': pad_t } ); } ); } ); // Logo height wp.customize( 'clc-options[logo-height]', function ( value ) { value.bind( function ( to ) { if ( !to ) { return; } var w_size = wp.customize( 'clc-options[logo-width]' )._value + 'px '; var h_size = to + 'px'; $( '.login.clc-both-logo h1 a' ).css( { 'margin-top': ( 0 - (30 + parseInt(to)) ) + 'px', 'background-size': w_size + h_size, 'padding-top': ( 30 + parseInt(to) ) + 'px' } ); } ); } ); // Lost password button text wp.customize( 'clc-options[lostpassword-button-label]', function( value ) { value.bind( function( to ) { if( ! to ) { return; } $( '#lostpasswordform input[name="wp-submit"]' ).val( to ); } ); } ); // Username label wp.customize( 'clc-options[lostpassword-username-label]', function( value ) { value.bind( function( to ) { $( '#lostpasswordform label span' ).html( to ); } ); } ); // Columns width wp.customize( 'clc-options[columns-width]', function( value ) { value.bind( function( to ) { var customCSS = '', leftWidth, rightWidth; if ( '' !== to && undefined !== to.left && undefined !== to.right ) { leftWidth = ( 100 / 12 )*parseInt( to.left, 10 ); rightWidth = ( 100 / 12 )*parseInt( to.right, 10 ); customCSS = '.ml-half-screen.ml-login-align-3 .ml-container .ml-extra-div,.ml-half-screen.ml-login-align-1 .ml-container .ml-form-container{ width:' + leftWidth + '%; }'; customCSS += '.ml-half-screen.ml-login-align-4 .ml-container .ml-extra-div,.ml-half-screen.ml-login-align-2 .ml-container .ml-form-container{ flex-basis:' + leftWidth + '%; }'; customCSS += '.ml-half-screen.ml-login-align-3 .ml-container .ml-form-container,.ml-half-screen.ml-login-align-1 .ml-container .ml-extra-div{ width:' + rightWidth + '%; }'; customCSS += '.ml-half-screen.ml-login-align-4 .ml-container .ml-form-container,.ml-half-screen.ml-login-align-2 .ml-container .ml-extra-div{ flex-basis:' + rightWidth + '%; }'; $( '#clc-columns-style' ).text( customCSS ); } } ); } ); $( '.clc-preview-event' ).click( function() { wp.customize.preview.send( 'clc-focus-section', $( this ).data( 'section' ) ); } ); wp.customize.bind( 'preview-ready', function() { wp.customize.preview.bind( 'change-form', function( form ) { if ( 'register' == form ) { $('.show-only_login').hide(); $('.show-only_lostpassword').hide(); $('.show-only_register').show(); }else if( 'lostpassword' == form ){ $('.show-only_login').hide(); $('.show-only_register').hide(); $('.show-only_lostpassword').show(); }else{ $('.show-only_register').hide(); $('.show-only_lostpassword').hide(); $('.show-only_login').show(); } } ); } ); })( jQuery );
[+]
..
[-] jquery.minicolors.js
[edit]
[-] jquery.minicolors.min.js
[edit]
[-] clc-preview.js
[edit]
[-] clc-customizer.js
[edit]