mediawiki: Untabify template

Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
James Valleroy 2018-06-16 22:01:54 -04:00
parent 62ccfdfebd
commit c7aca73ddb
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -24,17 +24,17 @@
<script type="text/javascript">
(function($) {
$('#id_enable_public_registrations').click(function () {
var checkedState = $(this).prop("checked");
var checkedState = $(this).prop("checked");
if (checkedState) {
$('#id_enable_private_mode').prop('checked', false);
}
$('#id_enable_private_mode').prop('checked', false);
}
});
$('#id_enable_private_mode').click(function () {
var checkedState = $(this).prop("checked");
var checkedState = $(this).prop("checked");
if (checkedState) {
$('#id_enable_public_registrations').prop('checked', false);
}
$('#id_enable_public_registrations').prop('checked', false);
}
});
})(jQuery);
</script>