osem-fcy/app/views/conference/_footer.html.haml
Ana c1ce420c5d unnecessary %div deleted
unnecessary %div deleted from haml files as div is the default
2016-06-30 21:01:06 +02:00

14 lines
361 B
Text

.scroll-top-wrapper
= link_to "#banner", class: "smoothscroll" do
%i.fa.fa-2x.fa-arrow-circle-up
:javascript
$(function(){
$(document).on( 'scroll', function(){
if ($(window).scrollTop() > 100) {
$('.scroll-top-wrapper').addClass('show');
} else {
$('.scroll-top-wrapper').removeClass('show');
}
});
});