add actions to newly created files and folders

closes #231
This commit is contained in:
Robin Appelman 2012-11-07 22:13:07 +01:00
parent 42935c5564
commit 37fe9800b6
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,7 @@ var FileList={
if (hidden) {
row.hide();
}
FileActions.display(row.find('td.filename'));
},
addDir:function(name,size,lastModified,hidden){
var html, td, link_elem, sizeColor, lastModifiedTime, modifiedColor;
@ -73,6 +74,7 @@ var FileList={
if (hidden) {
row.hide();
}
FileActions.display(row.find('td.filename'));
},
refresh:function(data) {
var result = jQuery.parseJSON(data.responseText);