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) { ?> <?php if (enterprise_installed() === false) { ?>
$('.header_left').on('click', function(){ $('.header_left').on('click', function(){
// Hidden tips modal.
$(".window").css("display", "none");
jQuery.post( jQuery.post(
"ajax.php", "ajax.php",
{ {

View File

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