1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/UI/jQuery/ToTheTop.js
2013-06-24 23:27:09 -07:00

26 lines
630 B
JavaScript

'use strict';
define(
[
'bootstrap'
], function () {
$(document).ready(function () {
var _window = $(window);
var _scrollButton = $('#scroll-up');
$(window).scroll(function () {
if (_window.scrollTop() > 100) {
_scrollButton.fadeIn();
}
else {
_scrollButton.fadeOut();
}
});
_scrollButton.click(function () {
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
});
});