mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 11:02:40 +01:00
86eb70bcbb
Moved Plugin scripts to Scripts (Compatibility with Nuget). jquery.validate.unobtrusive.min.js no longer uses CDN (Now a Nuget package).
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
$(document).ready(function () {
|
|
var options = {
|
|
type: 'post',
|
|
resetForm: false
|
|
};
|
|
$('#form').ajaxForm(options);
|
|
$('#save_button').removeAttr('disabled');
|
|
}); |