We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4127eea commit c09bc02Copy full SHA for c09bc02
1 file changed
plugins/SegmentEditor/javascripts/Segmentation.js
@@ -509,7 +509,12 @@ Segmentation = (function($) {
509
});
510
511
var bindEvents = function () {
512
- self.target.on('click', '.segmentationContainer', togglePanel);
+ self.target.on('click', '.segmentationContainer', function (e) {
513
+ if ($(e.target).closest('.segmentFilterContainer').length > 0) {
514
+ return;
515
+ }
516
+ togglePanel(e);
517
+ });
518
519
self.target.on('click', '.editSegment', function(e) {
520
const $button = $(this);
0 commit comments