mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-25 01:02:19 +00:00
Remove unnecessary jquery from wizard
This commit is contained in:
parent
5a3875c75e
commit
054202a227
1 changed files with 3 additions and 10 deletions
|
@ -834,7 +834,6 @@
|
|||
</html>
|
||||
|
||||
<script>
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
$('.next1').click(function(e) {
|
||||
|
@ -849,9 +848,9 @@
|
|||
|
||||
});
|
||||
|
||||
$('.prev1').click(function(e) {
|
||||
$('.prev1').click(function(m) {
|
||||
|
||||
e.preventDefault();
|
||||
m.preventDefault();
|
||||
|
||||
$('#general').addClass('active');
|
||||
$('#subliminal').removeClass('active');
|
||||
|
@ -917,9 +916,6 @@
|
|||
$('#settings_use_sonarr').checkbox({
|
||||
onChecked: function() {
|
||||
$(".sonarr_hide").show();
|
||||
$('#sonarr_validated').checkbox('uncheck');
|
||||
$('.form').form('validate form');
|
||||
$('#loader').removeClass('active');
|
||||
},
|
||||
onUnchecked: function() {
|
||||
$(".sonarr_hide").hide();
|
||||
|
@ -930,9 +926,6 @@
|
|||
$('#settings_use_radarr').checkbox({
|
||||
onChecked: function() {
|
||||
$(".radarr_hide").show();
|
||||
$('#radarr_validated').checkbox('uncheck');
|
||||
$('.form').form('validate form');
|
||||
$('#loader').removeClass('active');
|
||||
},
|
||||
onUnchecked: function() {
|
||||
$(".sonarr_hide").hide();
|
||||
|
|
Loading…
Reference in a new issue