blob: ac8b87513f214c8b4ddf0aff987f0e3c11ced517 (
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_versioning/history.php?file='+encodeURIComponent($('#dir').val()).replace(/%2F/g, '/')+'/'+encodeURIComponent(filename);
});
});
|