Merge branch 'ent-12597-popup-en-la-open' into 'develop'

Ent 12597 popup en la open

See merge request artica/pandorafms!6784
This commit is contained in:
Rafael Ameijeiras 2023-12-18 15:51:22 +00:00
commit de6747f53d
2 changed files with 5 additions and 5 deletions

View File

@ -927,8 +927,6 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
<?php if (enterprise_installed() === false) { ?>
$('.header_left').on('click', function(){
// Hidden tips modal.
$(".window").css("display", "none");
jQuery.post(
"ajax.php",
{

View File

@ -1669,12 +1669,14 @@ require 'include/php_to_js_values.php';
autoclose_info_box(item.id, $autocloseTime)
}
);
});
// Cog animations.
$(document).ready(function() {
// Cog animations.
$(".submitButton").click(function(){
$("#"+this.id+" > .subIcon.cog").addClass("rotation");
});
<?php if ($_GET['logged'] === '1' && enterprise_installed() === false) { ?>
$('#header_table_inner').find('.header_left').trigger('click');
<?php } ?>
});
</script>