Move the style selector to the boardlist
This commit is contained in:
parent
72fcab1d5e
commit
671f43b449
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
onready(function(){
|
onready(function(){
|
||||||
var stylesDiv = $('div.styles');
|
var stylesDiv = $('div.styles');
|
||||||
|
var boardList = $('div.boardlist');
|
||||||
var stylesSelect = $('<select></select>');
|
var stylesSelect = $('<select></select>');
|
||||||
|
|
||||||
var i = 1;
|
var i = 1;
|
||||||
@ -36,9 +37,9 @@ onready(function(){
|
|||||||
|
|
||||||
stylesDiv.hide();
|
stylesDiv.hide();
|
||||||
|
|
||||||
stylesDiv.after(
|
boardList.after(
|
||||||
$('<div id="style-select" style="float:right;margin-bottom:10px"></div>')
|
$('<div id="style-select"></div>')
|
||||||
.text(_('Style: '))
|
/*.text(_('Style: '))*/
|
||||||
.append(stylesSelect)
|
.append(stylesSelect)
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user