From df9fea24a58eba9476aaeccc350441634eaf5eae Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Tue, 14 Jun 2022 10:59:01 +0200 Subject: [PATCH] Fix expand/collapse on source viewer sidebar folders --- src/librustdoc/html/static/js/source-script.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librustdoc/html/static/js/source-script.js b/src/librustdoc/html/static/js/source-script.js index 58c036e0b3ca..14d8a942977d 100644 --- a/src/librustdoc/html/static/js/source-script.js +++ b/src/librustdoc/html/static/js/source-script.js @@ -32,10 +32,10 @@ function createDirEntry(elem, parent, fullPath, currentFile, hasFoundFile) { fullPath += elem["name"] + "/"; name.onclick = () => { - if (hasClass(this, "expand")) { - removeClass(this, "expand"); + if (hasClass(name, "expand")) { + removeClass(name, "expand"); } else { - addClass(this, "expand"); + addClass(name, "expand"); } }; name.innerText = elem["name"];