diff --git a/modules/admin/src/resources/dist/js/main.js b/modules/admin/src/resources/dist/js/main.js index ced27f6ed..5a3a1e8f5 100644 --- a/modules/admin/src/resources/dist/js/main.js +++ b/modules/admin/src/resources/dist/js/main.js @@ -9241,6 +9241,7 @@ angular.module('dnd', []) e.dataTransfer.dropEffect = 'move'; // allows us to drop if (e.preventDefault) { e.preventDefault(); } + if (e.stopPropagation) { e.stopPropagation(); } if (!scope.dndIsvalid({hover: scope.dndModel, dragged: dndFactory.get().content})) { e.stopPropagation(); e.preventDefault(); diff --git a/modules/admin/src/resources/js/dnd.js b/modules/admin/src/resources/js/dnd.js index f4d7ad705..5a14a842b 100644 --- a/modules/admin/src/resources/js/dnd.js +++ b/modules/admin/src/resources/js/dnd.js @@ -99,6 +99,7 @@ angular.module('dnd', []) e.dataTransfer.dropEffect = 'move'; // allows us to drop if (e.preventDefault) { e.preventDefault(); } + if (e.stopPropagation) { e.stopPropagation(); } if (!scope.dndIsvalid({hover: scope.dndModel, dragged: dndFactory.get().content})) { e.stopPropagation(); e.preventDefault();