Fix #2958
This commit is contained in:
parent
213a7f137e
commit
80e52c57e1
|
@ -167,6 +167,12 @@ export default (callback: (launch: (router: VueRouter, api?: (os: MiOS) => API)
|
||||||
}
|
}
|
||||||
}, false);
|
}, false);
|
||||||
|
|
||||||
|
window.addEventListener('scroll', () => {
|
||||||
|
if (window.scrollY <= 8) {
|
||||||
|
os.store.commit('clearBehindNotes');
|
||||||
|
}
|
||||||
|
}, { passive: true });
|
||||||
|
|
||||||
Vue.mixin({
|
Vue.mixin({
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in New Issue