@@ -28,7 +28,8 @@ class Index {
bindEvent() {
var self = this;
- $("body").on("click", ".mask-wrap", function() {
+ $("body").on("click", ".mask-wrap", function(event) {
+ event.stopPropagation()
$(this).remove();
return false;
});