Optimise scrolling -> Delete heavy useless JS

This commit is contained in:
Olivier PEREZ 2015-10-22 20:26:44 +02:00
parent 67134126b6
commit 029fcbf470

View File

@ -164,15 +164,3 @@ $(document).ready(function() {
}
});
});
// Vote form moving to the top or to the bottom
$(window).scroll(function() {
var $table_offset = $('.results thead').offset();
if(($table_offset == undefined || $(window).scrollTop() > $table_offset.top+150) && ($('table.results').height()-150 > $(window).height())) {
$('#addition').before($('#vote-form'));
$('#tableContainer').after($('.scroll-buttons'));
} else {
$('.results tbody').prepend($('#vote-form'));
$('#tableContainer').before($('.scroll-buttons'));
}
});