Skip to content

Commit 732e9f0

Browse files
committed
Build with drag and drop fix
1 parent 0673934 commit 732e9f0

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

build/jsroot.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ let version_id = '7.4.x';
1111

1212
/** @summary version date
1313
* @desc Release date in format day/month/year like '14/04/2022' */
14-
let version_date = '4/07/2023';
14+
let version_date = '5/07/2023';
1515

1616
/** @summary version id and date
1717
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -102022,7 +102022,7 @@ class HierarchyPainter extends BasePainter {
102022102022
}).on('drop', function(ev) {
102023102023
select(this).classed('jsroot_drag_area', false);
102024102024
let itemname = ev.dataTransfer.getData('item');
102025-
if (itemname) h.dropItem(itemname, this.getAttribute('id'));
102025+
if (itemname) h.dropItem(itemname, this);
102026102026
});
102027102027
}
102028102028

changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
1. Fix - context menu position on lego plots
66
2. Fix - properly add interactive resize elements
7+
3. Fix - drag and drop handling on tabs layout
78

89

910
## Changes in 7.4.0

modules/core.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ let version_id = '7.4.x';
55

66
/** @summary version date
77
* @desc Release date in format day/month/year like '14/04/2022' */
8-
let version_date = '4/07/2023';
8+
let version_date = '5/07/2023';
99

1010
/** @summary version id and date
1111
* @desc Produced by concatenation of {@link version_id} and {@link version_date}

0 commit comments

Comments
 (0)