Move options box
This commit is contained in:
parent
d46428b5b7
commit
3cb47b5fa8
@ -103,17 +103,19 @@ options_tablist = $("<div id='options_tablist'></div>").appendTo(options_div);
|
|||||||
|
|
||||||
|
|
||||||
$(function(){
|
$(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) {
|
if ($(".boardlist.compact-boardlist").length) {
|
||||||
options_button.addClass("cb-item cb-fa").html("<i class='fa fa-gear'></i>");
|
options_button.addClass("cb-item cb-fa").html("<i class='fa fa-gear'></i>");
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($(".boardlist:first").length) {
|
if ($(".boardlist:first").length) {
|
||||||
options_button.appendTo($(".boardlist:first"));
|
options_button.css('float', 'right').appendTo($(".boardlist:first"));
|
||||||
}
|
}
|
||||||
else {
|
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);
|
options_button.on("click", Options.show);
|
||||||
|
Loading…
Reference in New Issue
Block a user