mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
Only scroll sidebar item into view if needed [ci skip]
This commit is contained in:
parent
65713a6593
commit
53a2bc8c8d
|
@ -84,8 +84,8 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"V_CSS": "2.2.0",
|
"V_CSS": "2.2.1",
|
||||||
"V_JS": "2.2.0",
|
"V_JS": "2.2.1",
|
||||||
"DEFAULT_SYNTAX": "python",
|
"DEFAULT_SYNTAX": "python",
|
||||||
"ANALYTICS": "UA-58931649-1",
|
"ANALYTICS": "UA-58931649-1",
|
||||||
"MAILCHIMP": {
|
"MAILCHIMP": {
|
||||||
|
|
|
@ -61,10 +61,10 @@ import initUniverse from './universe.vue.js';
|
||||||
const sidebarAttr = 'data-sidebar-active';
|
const sidebarAttr = 'data-sidebar-active';
|
||||||
const sections = [...document.querySelectorAll(`[${navAttr}]`)];
|
const sections = [...document.querySelectorAll(`[${navAttr}]`)];
|
||||||
const currentItem = document.querySelector(`[${sidebarAttr}]`);
|
const currentItem = document.querySelector(`[${sidebarAttr}]`);
|
||||||
if (currentItem && Element.prototype.scrollIntoView) {
|
|
||||||
currentItem.scrollIntoView();
|
|
||||||
}
|
|
||||||
if (window.inView) {
|
if (window.inView) {
|
||||||
|
if (currentItem && Element.prototype.scrollIntoView && !inView.is(currentItem)) {
|
||||||
|
currentItem.scrollIntoView();
|
||||||
|
}
|
||||||
if (sections.length) { // highlight first item regardless
|
if (sections.length) { // highlight first item regardless
|
||||||
sections[0].classList.add(activeClass);
|
sections[0].classList.add(activeClass);
|
||||||
}
|
}
|
||||||
|
@ -74,7 +74,7 @@ import initUniverse from './universe.vue.js';
|
||||||
if (el) {
|
if (el) {
|
||||||
sections.forEach(el => el.classList.remove(activeClass));
|
sections.forEach(el => el.classList.remove(activeClass));
|
||||||
el.classList.add(activeClass);
|
el.classList.add(activeClass);
|
||||||
if (Element.prototype.scrollIntoView) {
|
if (Element.prototype.scrollIntoView && !inView.is(el)) {
|
||||||
el.scrollIntoView();
|
el.scrollIntoView();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user