From: geez0x1 Date: Tue, 17 Jun 2014 20:22:03 +0000 (+0200) Subject: Update the modified date in UI on file reversion X-Git-Tag: v7.0.0beta1~14^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7576dde0a3d5a95e66c930111e11a35134a4d81d;p=nextcloud-server.git Update the modified date in UI on file reversion --- diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index 942a1a929f7..64e0df76490 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -70,9 +70,9 @@ function revertFile(file, revision) { OC.Notification.show( t('files_version', 'Failed to revert {file} to revision {timestamp}.', {file:file, timestamp:formatDate(revision * 1000)}) ); } else { $('#dropdown').hide('blind', function() { + $('#dropdown').closest('tr').find('.modified:first').html(relative_modified_date(revision)); $('#dropdown').remove(); $('tr').removeClass('mouseOver'); - // TODO also update the modified time in the web ui }); } }