$(document).ready(function() { $('#versions').bind('change', function() { var checked = 1; if (!this.checked) { checked = 0; } $.post(OC.filePath('files_versions','ajax','togglesettings.php'), 'versions='+checked); }); }); $(document).ready(function(){ if (typeof FileActions !== 'undefined') { // Add history button to files/index.php FileActions.register('file','History',function(){return OC.imagePath('core','actions/history')},function(filename){ if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback var file = $('#dir').val()+'/'+filename; createVersionsDropdown(filename, file) }); } }); function createVersionsDropdown(filename, files) { var historyUrl = OC.linkTo('files_versions', 'history.php') + '?path='+encodeURIComponent( $( '#dir' ).val() ).replace( /%2F/g, '/' )+'/'+encodeURIComponent( filename ); var html = '