FIX: Prevent default event and stop bubbling up when card popup is closed in mobile

This commit is contained in:
Vinoth Kannan 2019-03-01 01:42:17 +05:30
parent 64a3d63ddc
commit be436066ff
1 changed files with 4 additions and 0 deletions

View File

@ -97,6 +97,10 @@ export default Ember.Mixin.create({
}
this._close();
if (this.site.mobileView) {
return false;
}
}
return true;