bootstrap-toc icon indicating copy to clipboard operation
bootstrap-toc copied to clipboard

Add "Back to top"?

Open chuyangliu opened this issue 7 years ago • 2 comments

Boostrap official site has a "Back to top" at the end of the TOC. Could bootstrap-toc add the same feature?

chuyangliu avatar Nov 15 '17 02:11 chuyangliu

Pull request welcome! Would want to make it optional.

afeld avatar Mar 30 '18 12:03 afeld

Simple way without PR:

$(function() {
  var navSelector = "#toc";
  var $myNav = $(navSelector);
  Toc.init($myNav);
  $myNav.append('<a class="back-to-top" href="">Back to top</a>');
  $("body").scrollspy({
    target: navSelector
  });
});

DarkNami avatar Aug 22 '19 12:08 DarkNami