快捷通道

pbootcms 默认404、文章图片和视频100%显示的修改

欧普莱斯 5



404修改

路径:webcore emplate



视频修改

coreextendueditorueditor.all.min.js

查找controls

修改为:

controls autoplay="autoplay" preload="none" width="100%" height="100%" style="max-height:640px" src="'+a+'" data-setup="{}"


图片修改

webcoreextendueditordialogsimageimage.js

查找img.style.push

修改成

if(data['width']){

                  img.width = "100%";

                  img.style.push('width:'+"100%");

                }else{

                  img._propertyDelete.push('width');

                }

                if(data['height']){

                  img.height = "100%";

                  img.style.push('height:'+"100%");

                }else{

                  img._propertyDelete.push('height');

                }