1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 09:21:43 +02:00
Radarr/NzbDrone.Web/Scripts/settingsForm.js

23 lines
643 B
JavaScript
Raw Normal View History

2011-07-01 22:33:03 +02:00
$(document).ready(function () {
var options = {
target: '#result',
2011-08-08 23:50:48 +02:00
//beforeSubmit: showRequest,
//success: showResponse,
2011-07-01 22:33:03 +02:00
type: 'post',
resetForm: false
};
$('#form').ajaxForm(options);
$('#save_button').removeAttr('disabled');
2011-07-01 22:33:03 +02:00
});
function showRequest(formData, jqForm, options) {
$("#result").empty().html('Saving...');
$("#form :input").attr("disabled", true);
$('#saveAjax').show();
}
function showResponse(responseText, statusText, xhr, $form) {
$("#result").empty().html(responseText);
$("#form :input").attr("disabled", false);
$('#saveAjax').hide();
}