X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=templates%2Femails%2Fsend.tpl;h=1434bc50f7f37d4f7e1f4458d4e3fa082174159f;hb=105427e9fd39bad5e5fa972528d77032e2cd4b93;hp=a8628b46056e7560b3ae5f289d7b237a67b8cdcf;hpb=853ff307303faf861396c4e22dbaa56114366751;p=platal.git diff --git a/templates/emails/send.tpl b/templates/emails/send.tpl index a8628b4..1434bc5 100644 --- a/templates/emails/send.tpl +++ b/templates/emails/send.tpl @@ -1,6 +1,6 @@ {**************************************************************************} {* *} -{* Copyright (C) 2003-2010 Polytechnique.org *} +{* Copyright (C) 2003-2011 Polytechnique.org *} {* http://opensource.polytechnique.org/ *} {* *} {* This program is free software; you can redistribute it and/or modify *} @@ -65,7 +65,7 @@ for (var i = 0 ; i < form['cc_contacts[]'].length ; ++i) { ccc += form['cc_contacts[]'].options[i].value + ";"; } - $.post(platal_baseurl + "emails/send", + $.xpost("emails/send", { save: true, token: '{xsrf_token}', from: form.from.value, @@ -150,13 +150,17 @@ saveMessage(); return true; }); - $(document).ready( + $( function() { // Remove empty options in select (they were added only for HTML // compatibility). $('#to_contacts option[value=""]').remove(); $('#cc_contacts option[value=""]').remove(); }); + + $(function() { + $("[name='to']").focus(); + }); {/literal} //]]> @@ -307,9 +311,9 @@ {literal} function removeAttachments() { - Ajax.update_html(null, 'emails/send', null); - document.getElementById('att_already').style.display = 'none'; - document.getElementById('att_form').style.display = ''; + $.xget('email/send'); + $('#att_already').hide(); + $('#att_form').show(); } {/literal} //]]>