mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Allow app's custom file drop code to run even if no row data found
This commit is contained in:
parent
1d54a4d3d6
commit
a10ac05b63
@ -1329,8 +1329,7 @@ var et2_nextmatch = et2_DOMWidget.extend([et2_IResizeable, et2_IInput],
|
||||
// Check to see if we can handle the link
|
||||
// First, find the UID
|
||||
var row = this.controller.getRowByNode(target);
|
||||
if(!row || !row.uid) return false;
|
||||
var uid = row.uid;
|
||||
var uid = row.uid || null;
|
||||
|
||||
// Get the file information
|
||||
var files = [];
|
||||
@ -1351,7 +1350,9 @@ var et2_nextmatch = et2_DOMWidget.extend([et2_IResizeable, et2_IInput],
|
||||
}
|
||||
event.stopPropagation();
|
||||
event.preventDefault();
|
||||
|
||||
|
||||
if(!row || !row.uid) return false;
|
||||
|
||||
// Link the file to the row
|
||||
// just use a link widget, it's all already done
|
||||
var split = uid.split('::');
|
||||
|
Loading…
Reference in New Issue
Block a user