Browse Source
Fixed missing jQuery event object - expire interface now works with Firefox
remotes/origin/stable45
Fixed missing jQuery event object - expire interface now works with Firefox
remotes/origin/stable45
1 changed files with 33 additions and 45 deletions
@ -1,51 +1,39 @@ |
|||
// $(document).ready(function(){
|
|||
// $('#versions').change( function(){
|
|||
// OC.msg.startSaving('#calendar .msg')
|
|||
// // Serialize the data
|
|||
// var post = $( '#timezone' ).serialize();
|
|||
// $.post( OC.filePath('calendar', 'ajax/settings', 'settimezone.php'), post, function(data){
|
|||
// //OC.msg.finishedSaving('#calendar .msg', data);
|
|||
// });
|
|||
// return false;
|
|||
// });
|
|||
// });
|
|||
// TODO: allow the button to be clicked only once
|
|||
|
|||
$(document).ready(function(){ |
|||
$( document ).ready(function(){ |
|||
//
|
|||
$('#expireAllBtn').click(function(){ |
|||
$( '#expireAllBtn' ).click( |
|||
|
|||
// Prevent page from reloading
|
|||
event.preventDefault(); |
|||
function( event ) { |
|||
|
|||
// Show loading gif
|
|||
$('.expireAllLoading').show(); |
|||
|
|||
$.getJSON( |
|||
OC.filePath('files_versions','ajax','expireAll.php'), |
|||
function(result){ |
|||
if (result.status == 'success') { |
|||
$('.expireAllLoading').hide(); |
|||
$('#expireAllBtn').html('Expiration successful'); |
|||
} else { |
|||
|
|||
// Cancel loading
|
|||
$('#expireAllBtn').html('Expiration failed'); |
|||
|
|||
// Show Dialog
|
|||
OC.dialogs.alert( |
|||
'Something went wrong, your files may not have been expired', |
|||
'An error has occurred', |
|||
function(){ |
|||
$('#expireAllBtn').html(t('files_versions', 'Expire all versions')+'<img style="display: none;" class="loading" src="'+OC.filePath('core','img','loading.gif')+'" />'); |
|||
} |
|||
|
|||
); |
|||
|
|||
} |
|||
} |
|||
// Prevent page from reloading
|
|||
event.preventDefault(); |
|||
|
|||
); |
|||
|
|||
}); |
|||
|
|||
// Show loading gif
|
|||
$('.expireAllLoading').show(); |
|||
|
|||
$.getJSON( |
|||
OC.filePath('files_versions','ajax','expireAll.php'), |
|||
function(result){ |
|||
if (result.status == 'success') { |
|||
$('.expireAllLoading').hide(); |
|||
$('#expireAllBtn').html('Expiration successful'); |
|||
} else { |
|||
|
|||
// Cancel loading
|
|||
$('#expireAllBtn').html('Expiration failed'); |
|||
|
|||
// Show Dialog
|
|||
OC.dialogs.alert( |
|||
'Something went wrong, your files may not have been expired', |
|||
'An error has occurred', |
|||
function(){ |
|||
$('#expireAllBtn').html(t('files_versions', 'Expire all versions')+'<img style="display: none;" class="loading" src="'+OC.filePath('core','img','loading.gif')+'" />'); |
|||
} |
|||
); |
|||
} |
|||
} |
|||
); |
|||
} |
|||
); |
|||
}); |
Write
Preview
Loading…
Cancel
Save
Reference in new issue