Remove our highlighted item from the tree, when we click on the top-menu buttons
All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 28s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m39s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 2m53s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s

This commit is contained in:
Deon George 2025-06-19 17:46:13 +10:00
parent d294c9449d
commit 2d732e5d52

View File

@ -169,6 +169,9 @@
$('button[id^="link-"]').on('click',function(item) { $('button[id^="link-"]').on('click',function(item) {
var content; var content;
// Remove our fancy-tree highlight, since we are rendering the frame
$('.fancytree-node.fancytree-active').removeClass('fancytree-active');
$.ajax({ $.ajax({
url: $(this).data('link'), url: $(this).data('link'),
method: 'GET', method: 'GET',