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

pull/165/head
Aleksander Machniak 11 years ago
parent e837d8515a
commit c83a9556e7

@ -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