Changeset 1496
- Timestamp:
- Jan 9, 2012, 2:17:40 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/trunk/resources/specimentube.jsp
r1460 r1496 72 72 var currentStep = 1; 73 73 var usedBox = ''; 74 var restartTimer; 74 75 75 76 var caseInfo = null; … … 787 788 } 788 789 msg += '</ul>'; 790 msg += '<p></p>'; 791 msg += '<div id=restartSection><i>Wizard will restart automatically...</i></div>'; 789 792 setInnerHTML('done', msg); 790 793 Main.show('done'); 791 //Main.show('gorestart'); 794 Main.show('gostop'); 795 restartTimer = setTimeout('goRestart(true)',2000); 792 796 } 793 797 … … 811 815 } 812 816 caseInfo = response.caseInfo; 817 } 818 819 function goStop() 820 { 821 clearTimeout(restartTimer); 822 Main.hide('restartSection'); 823 Main.hide('gostop'); 824 Main.show('gorestart'); 813 825 } 814 826 </script> … … 977 989 </tr> 978 990 </table> 979 </div> 991 </div> 980 992 981 993 <div class="error" id="errorMessage" style="display: none; width: 800px; margin-left: 20px; margin-bottom: 0px;"></div> … … 988 1000 <td><base:button id="gonext" title="Next" image="gonext.gif" onclick="goNext(true)"/></td> 989 1001 <td><base:button id="gocreate" title="Create" image="gonext.gif" onclick="goCreate()" style="display: none;"/></td> 990 <td><base:button id="goupdate" title="Update" image="gonext.gif" onclick="goCreate()" style="display: none;"/></td> 1002 <td><base:button id="goupdate" title="Update" image="gonext.gif" onclick="goCreate()" style="display: none;"/></td> 991 1003 <td><base:button id="gorestart" title="Restart" image="goback.gif" onclick="goRestart(true)" style="display: none;"/></td> 1004 <td><base:button id="gostop" title="Stop" image="cancel.gif" onclick="goStop()" style="display:none;"/></td> 992 1005 <td id="gonext.message" class="message"></td> 993 1006 </tr>
Note: See TracChangeset
for help on using the changeset viewer.