kindeditor上传图片修改成默认本地上传网站
修改plugins/image/image.js文件
imageTabIndex = K.undef(self.imageTabIndex, 0),
tabIndex = K.undef(options.tabIndex, 0),
if (showRemote && tabIndex === 0) {
urlBox[0].focus();
urlBox...
修改plugins/image/image.js文件
imageTabIndex = K.undef(self.imageTabIndex, 0),
tabIndex = K.undef(options.tabIndex, 0),
if (showRemote && tabIndex === 0) {
urlBox[0].focus();
urlBox[0].select();
}
找到以上几个地方,将0修改成1即可。
imageTabIndex = K.undef(self.imageTabIndex, 0),
tabIndex = K.undef(options.tabIndex, 0),
if (showRemote && tabIndex === 0) {
urlBox[0].focus();
urlBox[0].select();
}
找到以上几个地方,将0修改成1即可。
我要评论