Show throbber during attachment upload
authorArt Cancro <ajc@citadel.org>
Sun, 12 Dec 2010 02:23:16 +0000 (21:23 -0500)
committerArt Cancro <ajc@citadel.org>
Sun, 12 Dec 2010 02:23:16 +0000 (21:23 -0500)
webcit/static/t/edit_message/attachments_pane.html

index de34f4c9ce4eebb42592935531de0f5864d16691..6f610d280d8575a72406ce6ec2f9c1cf3c9742bd 100644 (file)
 <div id="gonna_upload_this">
 <input type="hidden" name="submit_action" value="">
 <?_("Attach file:")>
-<input name="attachfile" id="attachfile" class="attachfile" size=40 type="file" onChange="$('gonna_upload_this').style.display='none'; document.upload_attachment_form.submit(); $('attachfile').value=''; show_attachments_form();">
+<input name="attachfile" id="attachfile" class="attachfile" size=40 type="file" onChange="$('gonna_upload_this').style.display='none'; $('upload_throbber').style.display='block'; document.upload_attachment_form.submit(); $('attachfile').value=''; show_attachments_form();">
 </div>
+
+<div id="upload_throbber" style="display:none">
+<?_("Upload")>&nbsp;<img src="static/throbber.gif" border="0">
+</div>
+
 </form>