![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/CoreBundle/Assets/js/libraries/ |
// Mautic note: This seem to be an addition to the original jQuery UI library specific for Mautic. It is not part of the original library. (function( $ ) { $.ui.ddmanager.frameOffsets = {}; //Override droppable offsets in order to account for scrollable divs $.ui.ddmanager.prepareOffsets = function (t, event) { var i, j, m = $.ui.ddmanager.droppables[ t.options.scope ] || [], type = event ? event.type : null, // workaround for #2317 list = ( t.currentItem || t.element ).find(":data(ui-droppable)").addBack(); droppablesLoop: for (i = 0; i < m.length; i++) { // No disabled and non-accepted if (m[ i ].options.disabled || ( t && !m[ i ].accept.call(m[ i ].element[ 0 ], ( t.currentItem || t.element )) )) { continue; } // Filter out elements in the current dragged item for (j = 0; j < list.length; j++) { if (list[ j ] === m[ i ].element[ 0 ]) { m[ i ].proportions().height = 0; continue droppablesLoop; } } m[ i ].visible = m[ i ].element.css("display") !== "none"; if (!m[ i ].visible) { continue; } // Activate the droppable if used directly from draggables if (type === "mousedown") { m[ i ]._activate.call(m[ i ], event); } m[ i ].offset = m[ i ].element.offset(); if (t.options.iframeId) { var scrollOffset = $('#' + t.options.iframeId).contents().scrollTop(); var newTop = m[ i ].offset.top - scrollOffset; m[ i ].offset = {top: newTop, left: m[ i ].offset.left}; } m[ i ].proportions({width: m[ i ].element[ 0 ].offsetWidth, height: m[ i ].element[ 0 ].offsetHeight}); } }; }) (jQuery);