Changeset 404
- Timestamp:
- 05/26/08 10:58:30
- Files:
-
- trunk/phpbms/common/javascript/common.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/phpbms/common/javascript/common.js
r384 r404 919 919 920 920 function modalAlert(text){ 921 921 922 text=""+text; 922 923 text.replace("\n","<br />"); 923 924 text+="<DIV align=\"right\"><button id=\"modalOK\" accesskey=\"o\" type=\"button\" class=\"Buttons\" onclick=\"closeModal()\" style=\"width:75px\"> ok </button></DIV>"; 924 925 showModal(text,"Alert",250); 926 927 var okButton = getObjectFromID("modalOK"); 928 okButton.focus(); 925 929 } 926 930