diff options
author | Mario <mario@mariovavti.com> | 2025-06-04 14:35:35 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-06-04 14:35:35 +0000 |
commit | ed97164f0172302af98ae637f54955655cbc2b1a (patch) | |
tree | ded4402205e9c7f96b06ffb28329d57f87d0939d /view/js | |
parent | 6649eca2bf4eba2bea36c41b64f3a749b003ab71 (diff) | |
download | volse-hubzilla-ed97164f0172302af98ae637f54955655cbc2b1a.tar.gz volse-hubzilla-ed97164f0172302af98ae637f54955655cbc2b1a.tar.bz2 volse-hubzilla-ed97164f0172302af98ae637f54955655cbc2b1a.zip |
remove unused code
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/view/js/main.js b/view/js/main.js index 6365b5d4d..51e4b849d 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -129,33 +129,7 @@ $(document).ready(function() { autoExpand(id); }); -/* - document.addEventListener('dblclick', function(event) { - const targetElement = event.target.closest('.wall-item-reaction.wall-item-comment'); - if (!targetElement) return; - - clearTimeout(clickTimer); - - const id = targetElement.dataset.itemId; - const uuid = targetElement.dataset.itemUuid; - const loading = document.getElementById('like-rotator-' + id); - loading.style.display = 'block'; - - document.querySelectorAll('.thread-wrapper.item-highlight').forEach(el => { - el.classList.remove('item-highlight'); - el.style.boxShadow = ''; - }); - - const wrapper = document.getElementById('thread-wrapper-' + id); - if (!wrapper.classList.contains('toplevel_item')) { - wrapper.classList.add('item-highlight'); - document.documentElement.style.setProperty('--hz-item-highlight', stringToHlsColor(uuid)); - } - - autoExpand(id); - }); -*/ // @hilmar |-> if ( typeof(window.tao) == 'undefined' ) { window.tao = {}; |