get the right file name for drag&drop. This was necessary after the switch to css to show/hide file actions, otherwise the actions where part of the extracted file name.

This commit is contained in:
Björn Schießle 2012-11-07 14:10:10 +01:00
parent 3e01fe1dbb
commit 168a2c7b6b
1 changed files with 1 additions and 1 deletions

View File

@ -722,7 +722,7 @@ var folderDropOptions={
}
var crumbDropOptions={
drop: function( event, ui ) {
var file=ui.draggable.text().trim();
var file=ui.draggable.parent().data('file');
var target=$(this).data('dir');
var dir=$('#dir').val();
while(dir.substr(0,1)=='/'){//remove extra leading /'s