EVOLUTION-MANAGER
Edit File: filetree.js
/* Licensed under the Apache License, Version 2.0 (the "License") http://www.apache.org/licenses/LICENSE-2.0 */ function dragHelper() { let s = $(this); if (s.hasClass('ui-state-active')) { s = $('.file.ui-state-active.ui-draggable.ui-draggable-handle, .recording.ui-state-active.ui-draggable.ui-draggable-handle'); } const c = $('<div/>').attr('id', 'draggingContainer').addClass('drag-container').width(80).height(36) , h = $('<div class="ui-corner-all ui-widget-header"/>').append(s.clone()).width(s.width()); return c.append(h); } function treeRevert(dropped) { $('.file.tree .trees')[0].scrollTop = $(this).parent()[0].offsetTop - 32; return !dropped || (!!dropped && !!dropped.context && $(dropped.context).hasClass('wb', 'room')); }