|
From: Rudi B. <ru...@us...> - 2004-11-22 21:52:08
|
Update of /cvsroot/jawmail/mail/templates/default/list In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1875/templates/default/list Modified Files: actions_js.php Log Message: A little feature that allows simple plugins to handle things such as Spam reports, Spam/Ham feeding, ... Index: actions_js.php =================================================================== RCS file: /cvsroot/jawmail/mail/templates/default/list/actions_js.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- actions_js.php 17 Aug 2004 22:55:51 -0000 1.2 +++ actions_js.php 22 Nov 2004 21:51:59 -0000 1.3 @@ -138,6 +138,13 @@ } +function submitAction(actID) { + document.msgs.action.value = actID; + document.msgs.submit(); +} + + + //--> </script> @@ -195,4 +202,18 @@ </div> +<?php if ($msg_actions_mng->haveUsableActions()): ?> + +<div id="actions" class="other_actions_popup"> + + <ul> + <?php + + $msg_actions_mng->dumpPopupHtml(); + + ?> + </ul> +</div> + +<?php endif; ?> |