Changeset 5043
- Timestamp:
- Oct 19, 2018, 1:35:32 PM (4 years ago)
- Location:
- extensions/net.sf.basedb.relax/trunk/resources/admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.relax/trunk/resources/admin/install.js
r5042 r5043 155 155 Wizard.setWizardStatus('messagecontainer error', numErrors+' errors was detected. You need to fix those manually.'); 156 156 } 157 else if (numMissing > 0) 157 else if (numWarnings > 0) 158 { 159 Wizard.setWizardStatus('messagecontainer note', numWarnings+' warnings was detected. Relax may still work. If not, you need to fix it manually.'); 160 } 161 else 162 { 163 Wizard.setWizardStatus('all-checks-passed', 'All checks passed'); 164 } 165 if (numMissing > 0) 158 166 { 159 167 Doc.show('createMissingItems'); … … 162 170 { 163 171 Doc.show('fixIncompleteItems'); 164 }165 else if (numWarnings > 0)166 {167 Wizard.setWizardStatus('messagecontainer note', numWarnings+' warnings was detected. Relax may still work. If not, you need to fix it manually.');168 }169 else170 {171 Wizard.setWizardStatus('all-checks-passed', 'All checks passed');172 172 } 173 173 } -
extensions/net.sf.basedb.relax/trunk/resources/admin/install.jsp
r5041 r5043 84 84 { 85 85 top: auto; 86 height: 5em;86 height: 8em; 87 87 left: 1em; 88 88 right: 1em; … … 119 119 <div class="content" id="wizard"> 120 120 121 <div class="absolutefull bottomborder" style="bottom: 5em;">121 <div class="absolutefull bottomborder" style="bottom: 8em;"> 122 122 <table id="itemTable" class="topborder bottomborder" style="display: none;"> 123 123 <thead class="bg-filled-100 bottomborder"> … … 152 152 153 153 <div class="absolutefull working" id="workInProgress"> 154 <div id="wizard-status" style="display:none; margin-top: 1em;"></div> 155 154 156 <div id="createMissingItems" style="display:none; margin-top: 1em;"> 155 157 <base:buttongroup> … … 163 165 </base:buttongroup> 164 166 </div> 165 <div id="wizard-status" style="display:none; margin-top: 1em;"></div>166 167 </div> 167 168
Note: See TracChangeset
for help on using the changeset viewer.