Skip to content

Commit

Permalink
202405250849
Browse files Browse the repository at this point in the history
  • Loading branch information
Remote committed May 25, 2024
1 parent 3073474 commit a990afc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions js/article-add.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ document.addEventListener("DOMContentLoaded", function () {

editor.init();
viewer.init();

editor.body.onwheel = function(e) {
viewer.body.scrollTop += e.deltaY;
};
}
});
});
5 changes: 4 additions & 1 deletion view/body-right/database-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@
<table>
<thead>
<tr>
<th :for="e in database.head">{{ e }}</th>
<th :for="e in database.head">
{{ e }}
<i class="fa-solid fa-caret-up"></i>
</th>
<th>其他</th>
</tr>
</thead>
Expand Down

0 comments on commit a990afc

Please sign in to comment.