publ-echo-test 0.0.392 → 0.0.393
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -209,9 +209,8 @@ var ReactGridLayout = function (_a) {
|
|
|
209
209
|
* @param {Element} node The current dragging DOM element
|
|
210
210
|
*/
|
|
211
211
|
var onDragHandler = function (i, x, y, _a, isGroup) {
|
|
212
|
-
var _b;
|
|
213
212
|
var e = _a.e, node = _a.node;
|
|
214
|
-
var l = (
|
|
213
|
+
var l = isGroup ? generateGrouplayout(i) : getLayoutItem(layout, i);
|
|
215
214
|
if (!l)
|
|
216
215
|
return;
|
|
217
216
|
if (!oldDragItem) {
|