blob: 19838cf6ad8c0fef89d1836448584db97253e738 (
plain)
1
2
3
4
5
6
7
8
9
|
$(document).ready(function(){
// Add history button to files/index.php
FileActions.register('file','History',function(){return OC.imagePath('core','actions/history')},function(filename){
window.location='../apps/files_versions/history.php?path='+encodeURIComponent($('#dir').val()).replace(/%2F/g, '/')+'/'+encodeURIComponent(filename);
});
});
|