golden hour
/home/godaofbq/oxygenbiohacking.com/wp-content/plugins/loginpress/js
⬆️ Go Up
Upload
File/Folder
Size
Actions
admin-custom.js
17.63 KB
Del
OK
controls
-
Del
OK
customize-controls.js
107.86 KB
Del
OK
customizer-previewer.js
8.73 KB
Del
OK
customizer.js
3.06 KB
Del
OK
script-login.php
4.24 KB
Del
OK
Edit: customizer.js
/** * Customizer Communicator * * @since 1.0.23 * @version 1.5.2 */ ( function ( exports, $ ) { "use strict"; var api = wp.customize, OldPreviewer; // Custom Customizer Previewer class (attached to the Customize API) api.myCustomizerPreviewer = { // Init init: function () { var self = this; // Store a reference to "this" in case callback functions need to reference it // Listen to the "customize-section-back" event for removing 'active' class from customize-partial-edit-shortcut. $(document).on( 'click', '.customize-section-back', function() { // if not multisites. 1.1.3 if (! $("#customize-preview iframe").hasClass('loginpress_multisite_active') ) { $('#customize-preview iframe').contents().find('.loginpress-partial.customize-partial-edit-shortcut').each( function(){ $(this).removeClass('active'); } ); } } ); // activated loginpress partial icons $(document).on( 'click', '.control-subsection', function() { // if not multisites. 1.1.3 if (! $("#customize-preview iframe").hasClass('loginpress_multisite_active') ) { if( $(this).attr('aria-owns') !== undefined ){ var trigger = $(this).attr('aria-owns').replace("sub-accordion-section-", ""); $('#customize-preview iframe').contents().find('[data-customizer-event="'+trigger+'"]').parent().addClass('active'); } } } ); $('#customize-controls h3.loginpress-group-heading').each(function(){ if($(this).next('.loginpress-group-info').length>0){ $(this).next('.loginpress-group-info').hide(); $(this).append('<button type="button" class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text">Help</span></button>'); } }); $(document).on('click', '#customize-controls h3.loginpress-group-heading .customize-help-toggle', function(){ $(this).parent().next('.loginpress-group-info').slideToggle(); }); $( '<li class="accordion-section accordion-section-LoginPress control-section control-section-default control-subsection"><a href="https://wordpress.org/support/plugin/loginpress/reviews/#new-post" target="_blank"><h4 class="accordion-section-title">Like our plugin? Leave a review here!</h4></a></li><li style="padding: 10px; text-align: center;">Made with ❤ by <a href="https://loginpress.pro/pricing/?utm_source=loginpress-lite&utm_medium=customizer-footer&utm_campaign=pro-upgrade&utm_content=made-with-link" target="_blank">Adnan</a></li>' ).appendTo( '#sub-accordion-panel-loginpress_panel' ); } }; /** * Capture the instance of the Preview since it is private (this has changed in WordPress 4.0). */ OldPreviewer = api.Previewer; api.Previewer = OldPreviewer.extend( { initialize: function( params, options ) { // Store a reference to the Previewer. api.myCustomizerPreviewer.preview = this; // Call the old Previewer's initialize function. OldPreviewer.prototype.initialize.call( this, params, options ); } } ); // Document Ready. $( function() { // Initialize our Previewer. api.myCustomizerPreviewer.init(); } ); } )( wp, jQuery );
Save