add actions to newly created files and folders

closes #231
remotes/origin/stable5
Robin Appelman 14 years ago
parent 42935c5564
commit 37fe9800b6
  1. 2
      apps/files/js/filelist.js

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

Loading…
Cancel
Save