diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-23 11:45:28 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-23 11:45:28 +0200 |
commit | d40b905f27e2191e644263931f31272d2b3f2f39 (patch) | |
tree | f5bee746c1d5d34c80dc6d0852f36a986343ff04 /files/js/filelist.js | |
parent | f5cef2fcbf7b0626d7e2c02727e3d51987beec40 (diff) | |
download | nextcloud-server-d40b905f27e2191e644263931f31272d2b3f2f39.tar.gz nextcloud-server-d40b905f27e2191e644263931f31272d2b3f2f39.zip |
Revert "hints for file actions"
1) Please test in Firefox 2) File actions should be refactored first, to be shown/hidden via CSS, not via JavaScript
This reverts commit e78d1dd676a12e0a26960f0bf131975c7559298a.
Diffstat (limited to 'files/js/filelist.js')
-rw-r--r-- | files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/js/filelist.js b/files/js/filelist.js index b166d946e16..b89bc9b57b6 100644 --- a/files/js/filelist.js +++ b/files/js/filelist.js @@ -50,7 +50,7 @@ FileList={ html+='<td class="filesize" title="'+humanFileSize(size)+'" style="color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')">'+simpleSize+'</td>'; html+='<td class="date" title="'+formatDate(lastModified)+'" style="color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')">'+relative_modified_date(lastModified.getTime() / 1000)+'</td>'; html+='</tr>'; - + FileList.insertElement(name,'dir',$(html)); $('tr[data-file="'+name+'"] td.filename').draggable(dragOptions); $('tr[data-file="'+name+'"] td.filename').droppable(folderDropOptions); |