mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-05 07:44:01 +01:00
14 lines
405 B
HTML
14 lines
405 B
HTML
<script type="text/javascript">
|
|
|
|
if (window.rcmail && rcmail.env.action)
|
|
{
|
|
var action = rcmail.env.action=='preferences' ? 'default' : (rcmail.env.action.indexOf('identity')>0 ? 'identities' : rcmail.env.action);
|
|
var tab = document.getElementById('settingstab'+action);
|
|
}
|
|
else
|
|
var tab = document.getElementById('settingstabdefault');
|
|
|
|
if (tab)
|
|
tab.className = 'tablink-selected';
|
|
|
|
</script> |