diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-07-04 11:19:20 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-07-04 11:19:20 +0200 |
commit | c3762a5ad5ef8940b7c8d456675edc371f656c80 (patch) | |
tree | 6e56bffd4e8abb8792c052155a5c97d9bd1756ad /skins/classic/templates/contactedit.html | |
parent | 6e57fb6b4cc8c108b89458651dd525a0df950fdd (diff) |
Fix folder names truncation in Classic skin (#1489220)
Fix bug where not all event handlers were executed (because body onload
was executed after rcmail init function, sometimes)
Diffstat (limited to 'skins/classic/templates/contactedit.html')
-rw-r--r-- | skins/classic/templates/contactedit.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/skins/classic/templates/contactedit.html b/skins/classic/templates/contactedit.html index db8599ac6..8ab801d05 100644 --- a/skins/classic/templates/contactedit.html +++ b/skins/classic/templates/contactedit.html @@ -5,7 +5,7 @@ <roundcube:include file="/includes/links.html" /> <script type="text/javascript" src="/functions.js"></script> </head> -<body class="iframe" onload="rcube_init_mail_ui()"> +<body class="iframe"> <div id="contact-title" class="boxtitle"><roundcube:label name="editcontact" /></div> <div id="contact-details" class="boxcontent"> @@ -35,7 +35,10 @@ <roundcube:object name="photoUploadForm" id="upload-form" size="30" class="popupmenu" /> <roundcube:object name="fileDropArea" id="contactpic" /> -<script type="text/javascript">rcube_init_tabs('contacttabs')</script> +<script type="text/javascript"> +rcube_init_tabs('contacttabs'); +rcube_init_mail_ui(); +</script> </body> </html> |