2016-12-10 03:39:02 +08:00
|
|
|
$(document).ready(function() {
|
|
|
|
// Show and activate password fields after box was checked
|
|
|
|
// Hidden by default
|
|
|
|
if ( !$("#togglePwNew").is(':checked') ) {
|
|
|
|
$(".passFields").hide();
|
|
|
|
}
|
|
|
|
$('#togglePwNew').click(function() {
|
|
|
|
$("#user_new_pass").attr("disabled", !this.checked);
|
|
|
|
$("#user_new_pass2").attr("disabled", !this.checked);
|
|
|
|
var $this = $(this);
|
|
|
|
if ($this.is(':checked')) {
|
|
|
|
$(".passFields").slideDown();
|
|
|
|
} else {
|
|
|
|
$(".passFields").slideUp();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// Show generate button after time selection
|
|
|
|
$('#trigger_set_time_limited_aliases').hide();
|
|
|
|
$('#validity').change(function(){
|
|
|
|
$('#trigger_set_time_limited_aliases').show();
|
|
|
|
});
|
|
|
|
|
|
|
|
// Init Bootstrap Switch
|
|
|
|
$.fn.bootstrapSwitch.defaults.onColor = 'success';
|
|
|
|
$("[name='tls_out']").bootstrapSwitch();
|
|
|
|
$("[name='tls_in']").bootstrapSwitch();
|
2017-01-13 03:26:10 +08:00
|
|
|
|
|
|
|
// Log modal
|
|
|
|
$('#logModal').on('show.bs.modal', function(e) {
|
|
|
|
var logText = $(e.relatedTarget).data('log-text');
|
2017-01-16 00:39:17 +08:00
|
|
|
$(e.currentTarget).find('#logText').html('<pre style="background:none;font-size:11px;line-height:1.1;border:0px">' + logText + '</pre>');
|
2017-01-13 03:26:10 +08:00
|
|
|
});
|
2016-12-10 03:39:02 +08:00
|
|
|
});
|