Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kliyer-ai committed Dec 5, 2024
1 parent 1630b48 commit 47de83c
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ <h1 class="title is-1 publication-title">🧹 CleanDIFT: Diffusion Features with
</span>

<!-- ArXiv abstract Link -->

<span class="link-block">
<a href="https://arxiv.org/abs/2412.03439" target="_blank"
class="external-link button is-normal is-rounded is-dark">
Expand All @@ -158,7 +158,7 @@ <h1 class="title is-1 publication-title">🧹 CleanDIFT: Diffusion Features with
<span>arXiv</span>
</a>
</span>


<!-- HF weights Link -->
<span class="link-block">
Expand Down Expand Up @@ -613,6 +613,31 @@ <h2 class="title">BibTeX</h2>

<!-- End of Statcounter Code -->

<script>
document.addEventListener('DOMContentLoaded', () => {

// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);

// Add a click event on each of them
$navbarBurgers.forEach(el => {
el.addEventListener('click', () => {

// Get the target from the "data-target" attribute
// const target = el.dataset.target;
// const $target = document.getElementById(target);
menu = el.parentElement.parentElement.children[1]

// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
menu.classList.toggle('is-active');

});
});

});
</script>

</body>

</html>

0 comments on commit 47de83c

Please sign in to comment.