将撰写页的附件上传移动到侧栏

移除 jQuery ui 里的 tabs
This commit is contained in:
fen
2013-11-25 21:53:15 +08:00
parent 381a08ed65
commit b2681975be
13 changed files with 237 additions and 974 deletions
+11
View File
@@ -185,6 +185,17 @@ $(document).ready(function() {
}
});
// 控制附件和参数的转换
$("#edit-secondary .typecho-option-tabs li").click(function() {
$("#edit-secondary .typecho-option-tabs li").removeClass('active');
$(this).addClass("active");
$(".tab_content").hide();
var selected_tab = $(this).find("a").attr("href");
$(selected_tab).show();
return false;
});
// 高级选项控制
$('#advance-panel-btn').click(function() {
$('#advance-panel').toggle();