Merge branch 'hotfix_复制粘贴图片丢失' into grey
Showing
1 changed file
with
7 additions
and
1 deletions
@@ -3861,7 +3861,8 @@ var jQuery = require('jquery'); | @@ -3861,7 +3861,8 @@ var jQuery = require('jquery'); | ||
3861 | container = this.initialCont(container); | 3861 | container = this.initialCont(container); |
3862 | 3862 | ||
3863 | container.className += ' edui-body-container'; | 3863 | container.className += ' edui-body-container'; |
3864 | - | 3864 | + container.onscroll = this.clearBorder; |
3865 | + | ||
3865 | if (options.initialFrameWidth) { | 3866 | if (options.initialFrameWidth) { |
3866 | options.minFrameWidth = options.initialFrameWidth | 3867 | options.minFrameWidth = options.initialFrameWidth |
3867 | } else { | 3868 | } else { |
@@ -3895,6 +3896,11 @@ var jQuery = require('jquery'); | @@ -3895,6 +3896,11 @@ var jQuery = require('jquery'); | ||
3895 | 3896 | ||
3896 | } | 3897 | } |
3897 | }, | 3898 | }, |
3899 | + clearBorder:function(){ | ||
3900 | + if($(".edui-scale")){ | ||
3901 | + $(".edui-scale").css("display","none") | ||
3902 | + } | ||
3903 | + }, | ||
3898 | /** | 3904 | /** |
3899 | * 编辑器初始化 | 3905 | * 编辑器初始化 |
3900 | * @private | 3906 | * @private |
-
Please register or login to post a comment