Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. const behavior = "smooth";
  2.  
  3. scrapbox.PageMenu.addItem({
  4. title: "Scroll to Top",
  5. onClick: () => window.scrollTo({top: 0, behavior})
  6. });
  7.  
  8. scrapbox.PageMenu.addItem({
  9. title: "Scroll to Bottom",
  10. onClick: () => {
  11. const editor = $("#editor");
  12. const top = editor.offset().top + editor.outerHeight(true);
  13. window.scrollTo({top, behavior});
  14. }
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement