فهرست منبع

:art: https://ld246.com/article/1734018624070

Vanessa 6 ماه پیش
والد
کامیت
aa36b95bdb
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      app/src/protyle/scroll/event.ts

+ 3 - 1
app/src/protyle/scroll/event.ts

@@ -61,7 +61,9 @@ export const scrollEvent = (protyle: IProtyle, element: HTMLElement) => {
         }
         if (protyle.wysiwyg.element.getAttribute("data-top") || protyle.block.showAll ||
             (protyle.scroll && protyle.scroll.element.classList.contains("fn__none")) || !protyle.scroll ||
-            protyle.scroll.lastScrollTop === element.scrollTop || protyle.scroll.lastScrollTop === -1) {
+            protyle.scroll.lastScrollTop === element.scrollTop || protyle.scroll.lastScrollTop === -1 ||
+            // 移动端跳转的时候会设置 wysiwyg.element.innerHTML = "";
+            !protyle.wysiwyg.element.firstElementChild) {
             return;
         }
         if (protyle.scroll.lastScrollTop - element.scrollTop > 0) {