mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-28 09:20:58 +01:00
Fix off-center <h1> on pages with no boardlist
This commit is contained in:
parent
a224829cd4
commit
3ee32993d7
@ -103,17 +103,19 @@ options_tablist = $("<div id='options_tablist'></div>").appendTo(options_div);
|
||||
|
||||
|
||||
$(function(){
|
||||
options_button = $("<a href='javascript:void(0)' title='"+_("Options")+"'>["+_("Options")+"]</a>").css("float", "right");
|
||||
options_button = $("<a href='javascript:void(0)' title='"+_("Options")+"'>["+_("Options")+"]</a>");
|
||||
|
||||
if ($(".boardlist.compact-boardlist").length) {
|
||||
options_button.addClass("cb-item cb-fa").html("<i class='fa fa-gear'></i>");
|
||||
}
|
||||
|
||||
if ($(".boardlist:first").length) {
|
||||
options_button.appendTo($(".boardlist:first"));
|
||||
options_button.css('float', 'right').appendTo($(".boardlist:first"));
|
||||
}
|
||||
else {
|
||||
options_button.prependTo($(document.body));
|
||||
var optsdiv = $('<div style="text-align: right"></div>');
|
||||
options_button.appendTo(optsdiv);
|
||||
optsdiv.prependTo($(document.body));
|
||||
}
|
||||
|
||||
options_button.on("click", Options.show);
|
||||
|
Loading…
Reference in New Issue
Block a user