Fix possible javascript error on drag-n-drop (#1489560)

pull/181/head
Aleksander Machniak 10 years ago
parent 92eb72dafc
commit e445e0acb5

@ -1345,7 +1345,7 @@ drag_mouse_move: function(e)
var uid = RegExp.$1, row = self.rows[uid];
if ($.inArray(uid, selection) > -1)
if (!row || $.inArray(uid, selection) > -1)
return;
selection.push(uid);

Loading…
Cancel
Save