1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-22 02:42:54 +00:00
seahub/templates/snippets/bottom_bar.html

7 lines
375 B
HTML
Raw Normal View History

var Bottom_bar = '<div id="bottom-bar"><button id="recommend">推荐</button> <button id="recommend">发送到私信</button></div>';
$('#wrapper').append(Bottom_bar);
$('#bottom-bar').css({'position':'fixed', 'bottom':0, 'left':$('#main').offset().left + $('#main').width() + 15});
$('#recommend').click(function() {
$('#recommend-form').modal({appendTo: '#main'});
});