summaryrefslogtreecommitdiffstats
path: root/client/components/cards/details.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/cards/details.js')
-rw-r--r--client/components/cards/details.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/client/components/cards/details.js b/client/components/cards/details.js
index d44adb67..6ab7da22 100644
--- a/client/components/cards/details.js
+++ b/client/components/cards/details.js
@@ -59,12 +59,6 @@ BlazeComponent.extendComponent({
'click .js-add-labels': Popup.open('cardLabels'),
'mouseenter .js-card-details': function() {
this.componentParent().showOverlay.set(true);
- },
- 'mouseleave .js-card-details': function(evt) {
- // We don't want to hide the overlay if the mouse is entering a pop-over
- var $pointedElement = $(evt.toElement || evt.relatedTarget);
- if ($pointedElement.closest('.pop-over').length === 0)
- this.componentParent().showOverlay.set(false);
}
}];
}