forked from mirror/MrDoc
修复移动网页端文集页内搜索左侧大纲被隐藏的问题
This commit is contained in:
parent
9e3d844960
commit
7da6c0cf5c
@ -61,8 +61,12 @@ tagCurrentDoc();
|
||||
小屏幕下的文集大纲显示处理
|
||||
*/
|
||||
//监听浏览器宽度的改变
|
||||
var browserWidth = document.documentElement.clientWidth;
|
||||
window.onresize = function(){
|
||||
changeSidebar();
|
||||
// console.log("可视区域变动")
|
||||
if(browserWidth !== document.documentElement.clientWidth){
|
||||
changeSidebar();
|
||||
}
|
||||
};
|
||||
function changeSidebar(){
|
||||
// 获取匹配指定的媒体查询
|
||||
|
Loading…
Reference in New Issue
Block a user