Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f6ffc04
output type definitions and adjust package.json so that types are pic…
trusktr Mar 28, 2024
2387399
ignore dist in prettierignore
trusktr Mar 28, 2024
1a352af
deprecate globals and global script data-* attributes, and set up the…
trusktr Apr 1, 2024
355469f
add dist to eslintignore
trusktr Apr 2, 2024
4a867ad
fix typo
trusktr Apr 2, 2024
c860c65
Merge branch 'develop' into type-definitions
trusktr Nov 16, 2025
482297a
fix many type errors by adding type declarations, suppress ~600 error…
trusktr Nov 16, 2025
6aa8831
update DocsifyConfig types and docs, improve/fix a few types, and add…
trusktr Nov 17, 2025
a0a3b78
hook the consume-types test into CI
trusktr Nov 17, 2025
585b7d3
quotes messing windows up?
trusktr Nov 17, 2025
da6f92b
fix e2e tests that failed on the added deprecation messages
trusktr Nov 17, 2025
4b6f2d3
fix formatting
trusktr Nov 17, 2025
a042aca
remove deprecation messages from global API
trusktr Nov 17, 2025
f672341
Update src/core/event/index.js
trusktr Nov 18, 2025
cb41307
remove unnecessary boolean type from `repo` option
trusktr Nov 18, 2025
08d4a65
Merge branch 'type-definitions' of github.com:docsifyjs/docsify into …
trusktr Nov 18, 2025
512ab8d
Fix spelling error in test/consume-types/README.md (#2630)
Copilot Nov 18, 2025
dedc3b8
Remove dead code in getNode Vue detection (#2631)
Copilot Nov 18, 2025
73fd804
fix type error
trusktr Nov 18, 2025
97472a7
Merge branch 'develop' into type-definitions
trusktr Nov 20, 2025
71a7db4
Merge branch 'develop' into type-definitions
trusktr Nov 21, 2025
158be89
Merge branch 'develop' into type-definitions
trusktr Nov 25, 2025
f14f33c
Merge branch 'develop' into type-definitions
trusktr Dec 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/core/event/index.js
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
  • Loading branch information
trusktr and Copilot authored Nov 18, 2025
commit f6723413e575ad1fd55adf7a952152296575ccf5
2 changes: 1 addition & 1 deletion src/core/event/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
const hasSubSidebar = linkParent?.querySelector('.app-sub-sidebar');

if (hasSubSidebar) {
dom.body.classList.toggle('collapse');
linkParent.classList.toggle('collapse');

Check failure on line 255 in src/core/event/index.js

View workflow job for this annotation

GitHub Actions / lint (lts/*)

'linkParent' is possibly 'null' or 'undefined'.

Check failure on line 255 in src/core/event/index.js

View workflow job for this annotation

GitHub Actions / test-jest (lts/*, windows-latest)

'linkParent' is possibly 'null' or 'undefined'.

Check failure on line 255 in src/core/event/index.js

View workflow job for this annotation

GitHub Actions / test-playwright (lts/*)

'linkParent' is possibly 'null' or 'undefined'.

Check failure on line 255 in src/core/event/index.js

View workflow job for this annotation

GitHub Actions / test-jest (lts/*, macos-latest)

'linkParent' is possibly 'null' or 'undefined'.

Check failure on line 255 in src/core/event/index.js

View workflow job for this annotation

GitHub Actions / test-jest (lts/*, ubuntu-latest)

'linkParent' is possibly 'null' or 'undefined'.
}
});
}
Expand Down
Loading