fengyuanchen / cropper

⚠️ [Deprecated] No longer maintained, please use https://github.com/fengyuanchen/jquery-cropper
MIT License
7.75k stars 1.74k forks source link

Click to hide the mask #910

Closed BestJianJian closed 7 years ago

BestJianJian commented 7 years ago

I'm a rookie , How can I cancel a hidden click event in a blank area. (取消点击空白区域隐藏遮罩层的事件方法。) thank u !

fengyuanchen commented 7 years ago
$('body').click(function(e) {
  if ($(e.target).hasClass('copper-modal')) {
    $('img').cropper('clear');
  }
});