Remove the history dropdown before creating a new one

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

@ -16,9 +16,17 @@ $(document).ready(function(){
if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback
var file = $('#dir').val()+'/'+filename;
createVersionsDropdown(filename, file)
// Check if drop down is already visible for a different file
if (($('#dropdown').length > 0)) {
if (file != $('#dropdown').data('file')) {
$('#dropdown').hide('blind', function() {
$('tr').removeClass('mouseOver');
createVersionsDropdown(filename, file);
});
}
} else {
createVersionsDropdown(filename, file);
}
});
}
});

Loading…
Cancel
Save