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();
});