Changeset 1928
- Timestamp:
- Apr 12, 2013, 11:15:49 AM (9 years ago)
- Location:
- extensions/net.sf.basedb.reggie/trunk/resources/libprep
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/trunk/resources/libprep/auto_select_rna.jsp
r1889 r1928 27 27 <base:page type="popup" title="<%=title%>"> 28 28 <base:head> 29 <link rel="stylesheet" type="text/css" href="../css/reggie.css"> 30 <script language="JavaScript" src="../reggie.js" type="text/javascript" charset="UTF-8"></script> 29 31 30 32 <script> … … 36 38 if (frm.flag.checked) options.flag = 1; 37 39 if (frm.reProcess.checked) options.reProcess = 1; 38 window.opener.autoSelect(options); 39 window.close(); 40 try 41 { 42 showLoadingAnimation('Finding RNA. Please wait...'); 43 window.opener.autoSelect(options); 44 window.close(); 45 } 46 finally 47 { 48 hideLoadingAnimation(); 49 } 40 50 } 41 51 </script> 42 52 <style> 53 div#loading 54 { 55 text-align: center; 56 margin-top: 2em; 57 } 58 </style> 43 59 </base:head> 44 60 <base:body> … … 72 88 <th></th> 73 89 <td> 90 <div class="loading" id="loading" style="display: none;"> 91 <table> 92 <tr> 93 <td><img src="../images/loading.gif"></td> 94 <td id="loading.msg">Please wait...</td> 95 </tr> 96 </table> 97 </div> 74 98 75 99 </td> -
extensions/net.sf.basedb.reggie/trunk/resources/libprep/select_file.jsp
r1865 r1928 38 38 39 39 var reader = new FileReader(); 40 41 40 reader.onload = rnaFileLoaded; 42 41 reader.readAsText(file); 42 43 showLoadingAnimation('Loading RNA from file \'' + file.name + '\'...'); 43 44 } 44 45 … … 54 55 alert(ex); 55 56 } 57 finally 58 { 59 hideLoadingAnimation(); 60 } 56 61 } 57 62 58 63 </script> 59 64 <style> 60 65 #loading 66 { 67 text-align: center; 68 background-color: #FFFFFF; 69 margin-right: 2em; 70 } 61 71 </style> 62 72 </base:head> … … 88 98 </ul> 89 99 100 <div class="loading" id="loading" style="display: none;"> 101 <table> 102 <tr> 103 <td><img src="../images/loading.gif"></td> 104 <td id="loading.msg">Please wait...</td> 105 </tr> 106 </table> 107 </div> 108 90 109 </div> 91 110 </div>
Note: See TracChangeset
for help on using the changeset viewer.