HEX
Server: LiteSpeed
System: Linux server257.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: salhiscp (12590)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: /home/salhiscp/salhab360photos.com/wp-content/themes/acora/js/admin.js
/**
 * Admin js file, handles most of the js functionality.
 *
 * @package acora
 * @since acora 1.0
 */
 
jQuery(document).ready(function($){
    
    'use strict';


    function init(){
    	setTimeout(function(){
    		fixCSS();
    	}, 100);
        
    }

    /**
     * Tweek some CSS rules that are not possible to do with plain CSS.
     * --------------------------------------------------------
     */
    function fixCSS(){

    	// Fix old editor p tags with images in them.
        $('.wp-block-freeform p').each(function(){
            if($(this).find('img')[0]){
                $(this).css({'padding-top':'10px'});
                if(!$(this).text().trim().length) {
                    $(this).css({'padding-top':'0'});
                }
            }
        });
    }

    init();
});