mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-06-13 00:41:59 +03:00
Page JS: Improved block jumping and highlighting
- Updated anchor scroll change to open up details blocks if the target exists within. - Updated highlighting and animation implementation to fix hardly visible highlighting. - Removed old, now unused, handing of CM instances in details blocks. Related to #4637.
This commit is contained in:
@ -37,7 +37,6 @@ export class PageDisplay extends Component {
|
||||
|
||||
window.importVersioned('code').then(Code => Code.highlight());
|
||||
this.setupNavHighlighting();
|
||||
this.setupDetailsCodeBlockRefresh();
|
||||
|
||||
// Check the hash on load
|
||||
if (window.location.hash) {
|
||||
@ -87,14 +86,4 @@ export class PageDisplay extends Component {
|
||||
}
|
||||
}
|
||||
|
||||
setupDetailsCodeBlockRefresh() {
|
||||
const onToggle = event => {
|
||||
const codeMirrors = [...event.target.querySelectorAll('.CodeMirror')];
|
||||
codeMirrors.forEach(cm => cm.CodeMirror && cm.CodeMirror.refresh());
|
||||
};
|
||||
|
||||
const details = [...this.container.querySelectorAll('details')];
|
||||
details.forEach(detail => detail.addEventListener('toggle', onToggle));
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user