v1.3.0 #124

Merged
DrMaxNix merged 43 commits from dev into main 2024-07-29 19:21:56 +02:00
Showing only changes of commit eb22d33fb8 - Show all commits

View File

@ -90,5 +90,9 @@ function copylink_section_id(self){
// CONTINUE SEARCHING //
// continue with previous sibling
if(self.previousElementSibling !== null) return copylink_section_id(self.previousElementSibling);
// continue with parent
return copylink_section_id(self.parentElement);
}