fix for bug #1752 (Renaming of folders in files view does not work correctly in firefox 15)

This commit is contained in:
Björn Schießle 2012-09-19 14:05:09 +02:00
parent c199c4ad67
commit 223bf3e47c
1 changed files with 19 additions and 17 deletions

View File

@ -151,9 +151,11 @@ var FileList={
OC.dialogs.alert(result.data.message, 'Error moving file');
newname = name;
}
tr.data('renaming',false);
});
}
}
tr.attr('data-file', newname);
var path = td.children('a.name').attr('href');
td.children('a.name').attr('href', path.replace(encodeURIComponent(name), encodeURIComponent(newname)));
@ -169,7 +171,7 @@ var FileList={
if (newname.indexOf('.') > 0 && tr.data('type') != 'dir') {
span.append($('<span class="extension">'+newname.substr(newname.lastIndexOf('.'))+'</span>'));
}
tr.data('renaming',false);
}
return false;
});
input.click(function(event){