FIX: Prevent default event and stop bubbling up when card popup is closed in mobile
This commit is contained in:
parent
64a3d63ddc
commit
be436066ff
|
@ -97,6 +97,10 @@ export default Ember.Mixin.create({
|
|||
}
|
||||
|
||||
this._close();
|
||||
|
||||
if (this.site.mobileView) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue