BUG 症状:
拖动分割栏或resize的时候,出现"未指明的错误"
1.打开ext-base.js
2. 找到getBoundingClientRect()
3.替换为
// this is from the minified version
try{
M=G.getBoundingClientRect();
N=C(document).getScroll();
return[M.left+N.left,M.top+N.top];
}catch(ex){
return [0,0];
}}
try{
M=G.getBoundingClientRect();
N=C(document).getScroll();
return[M.left+N.left,M.top+N.top];
}catch(ex){
return [0,0];
}}