Browse Source

Forgot to actually call remove on the history dropdown

remotes/origin/stable4
Michael Gapczynski 14 years ago
parent
commit
ea7456a06a
  1. 1
      apps/files_versions/js/versions.js

1
apps/files_versions/js/versions.js

@ -20,6 +20,7 @@ $(document).ready(function(){
if (($('#dropdown').length > 0)) {
if (file != $('#dropdown').data('file')) {
$('#dropdown').hide('blind', function() {
$('#dropdown').remove();
$('tr').removeClass('mouseOver');
createVersionsDropdown(filename, file);
});

Loading…
Cancel
Save