x = box.left + pos.x;
修改为
y = (parseInt(box.top) < 0 ? 0 : box.top) +pos.y;
kindeditor-all-mini.js里,找到第一个pos:function(){,大概在74行146列,往后找到
g=a.top+g.y;
替换为
g=(parseInt(a.top)<0?0:a.top)+g.y;
kindeditor-all-mini.js里,找到第一个pos:function(){,大概在74行146列,往后找到