Move the style selector to the boardlist

This commit is contained in:
Michael Walker 2014-11-13 00:04:14 +00:00
parent 72fcab1d5e
commit 671f43b449

View File

@ -16,6 +16,7 @@
onready(function(){
var stylesDiv = $('div.styles');
var boardList = $('div.boardlist');
var stylesSelect = $('<select></select>');
var i = 1;
@ -36,9 +37,9 @@ onready(function(){
stylesDiv.hide();
stylesDiv.after(
$('<div id="style-select" style="float:right;margin-bottom:10px"></div>')
.text(_('Style: '))
boardList.after(
$('<div id="style-select"></div>')
/*.text(_('Style: '))*/
.append(stylesSelect)
);
});