21 lines
495 B
JavaScript
21 lines
495 B
JavaScript
/*
|
|
* This is part of identity_imap plugin
|
|
*/
|
|
$(function() {
|
|
if ($('#plugin-ident_switch-account').size() > 0) {
|
|
$('#plugin-ident_switch-account').prependTo('.topright');
|
|
$('.topright .username').hide();
|
|
$('#plugin-ident_switch-account').show();
|
|
}
|
|
});
|
|
|
|
function plugin_switchIdent_switch(val) {
|
|
console.log("qwe1");
|
|
rcmail.http_post('plugin.ident_switch.switch', { '_ident-id': val });
|
|
}
|
|
|
|
function plugin_switchIdent_fixIdent(iid) {
|
|
if (parseInt(iid) > 0)
|
|
$("#_from").val(iid);
|
|
}
|