Skip to content
Snippets Groups Projects
Commit 5b42325b authored by Michael Gapczynski's avatar Michael Gapczynski
Browse files

History dropdown clean-up

parent 74d49920
Branches
No related tags found
No related merge requests found
......@@ -29,8 +29,8 @@ function createVersionsDropdown(filename, files) {
var html = '<div id="dropdown" class="drop" data-file="'+files+'">';
html += '<div id="private">';
html += '<select data-placeholder="File Version" id="found_versions" class="chzen-select">';
html += '<option value="">Saved versions</option>';
html += '<select data-placeholder="Saved versions" id="found_versions" class="chzen-select">';
html += '<option value=""></option>';
html += '</select>';
html += '</div>';
//html += '<input type="button" value="Revert file" onclick="revertFile()" />';
......@@ -81,8 +81,11 @@ function createVersionsDropdown(filename, files) {
if (response.status=='error') {
OC.dialogs.alert('Failed to revert '+file+' to revision '+formatDate(revision*1000)+'.','Failed to revert');
} else {
$('#dropdown').hide('blind');
$('#dropdown').hide('blind', function() {
$('#dropdown').remove();
$('tr').removeClass('mouseOver');
// TODO also update the modified time in the web ui
});
}
}
});
......@@ -110,6 +113,6 @@ function createVersionsDropdown(filename, files) {
}
$('#dropdown').show('blind');
$('#share_with').chosen();
$('#found_versions').chosen();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment