업데이트 README.md, .github/README.en.md
[liberty-mw-skin.git] / js / scroll-button.js
blob5b530dac31dc3cdf6ab7374071b092679a2056a6
1 $(document).ready(function () {
2   $("#liberty-scrollup").click(function () {
3     $("html, body").animate({ scrollTop: 0 }, 400);
4     return false;
5   });
6   $("#liberty-scrolldown").click(function () {
7     $("html, body").animate({ scrollTop: $(document).height() }, 400);
8     return false;
9   });
10 });