41 lines
1.4 KiB
JavaScript
41 lines
1.4 KiB
JavaScript
/*
|
|
* This is part of identity_imap plugin
|
|
*/
|
|
|
|
$(function() {
|
|
$("INPUT[name='_ident_switch.form.enabled']").change();
|
|
$("SELECT[name='_ident_switch.form.secure']").change();
|
|
plugin_switchIdent_processPreconfig();
|
|
});
|
|
|
|
function plugin_switchIdent_processPreconfig() {
|
|
var disFld = $("INPUT[name='_ident_switch.form.readonly']");
|
|
disFld.parentsUntil("TABLE", "TR").hide();
|
|
|
|
var disVal = disFld.val();
|
|
if (disVal > 0) {
|
|
$("INPUT[name='_ident_switch.form.host']").prop("disabled", true);
|
|
$("SELECT[name='_ident_switch.form.secure']").prop("disabled", true);
|
|
$("INPUT[name='_ident_switch.form.port']").prop("disabled", true);
|
|
}
|
|
if (2 == disVal) {
|
|
$("INPUT[name='_ident_switch.form.username']").prop("disabled", true);
|
|
}
|
|
|
|
}
|
|
|
|
function plugin_switchIdent_enabled_onChange(e) {
|
|
var $enFld = $("INPUT[name='_ident_switch.form.enabled']");
|
|
$("INPUT[name!='_ident_switch.form.enabled'], SELECT", $enFld.parents("FIELDSET")).prop("disabled", !$enFld.is(":checked"));
|
|
plugin_switchIdent_processPreconfig();
|
|
}
|
|
|
|
function plugin_switchIdent_secure_onChange(e) {
|
|
var $secSel = $("SELECT[name='_ident_switch.form.secure']");
|
|
var $portFld = $("INPUT[name='_ident_switch.form.port']");
|
|
|
|
if ('SSL' === $secSel.val().toUpperCase())
|
|
$portFld.attr("placeholder", 993);
|
|
else
|
|
$portFld.attr("placeholder", 143);
|
|
} |