This commit is contained in:
Jonathan 2023-12-18 11:28:09 +01:00
parent 3dd082c60f
commit 7ae77773e6
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>