浏览代码

Move the style selector to the boardlist

pull/7/head
Michael Walker 9 年前
父节点
当前提交
671f43b449
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. +4
    -3
      js/style-select.js

+ 4
- 3
js/style-select.js 查看文件

@@ -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)
);
});


正在加载...
取消
保存