2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00

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

View file

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