Changeset 1924
- Timestamp:
- Jun 9, 2011, 5:13:23 PM (11 years ago)
- Location:
- trunk/grails-app/views/studyWizard
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/studyWizard/index.gsp
r1810 r1924 18 18 <link rel="stylesheet" href="${resource(dir: 'css', file: 'studywizard.css')}"/> 19 19 <link rel="stylesheet" href="${resource(dir: 'css', file: 'templates.css')}"/> 20 <link rel="stylesheet" href="${resource(dir: 'css', file: 'tipTip.css')}"/> 21 <script type="text/javascript" src="${resource(dir: 'js', file: 'jquery.tipTip.minified.js')}"></script> 20 22 21 23 <g:if env="development"> -
trunk/grails-app/views/studyWizard/pages/_done.gsp
r1640 r1924 16 16 %> 17 17 <af:page> 18 <script type="text/javascript"> 19 $(document).ready(function() { 20 $("a.linktips").tipTip(); 21 }); 22 </script> 18 23 19 24 <span class="info"> … … 26 31 </g:else> 27 32 28 You can now <g:link controller="study" action="show" id="${study.id}">view the study</g:link>, 29 <g:link controller="studyWizard" params="[jump:((session.jump?.action == 'simpleedit') ? 'simpleedit' : 'edit')]" id="${study.id}">edit the study</g:link> 30 <g:if test="${quickSave}"> again</g:if> or 31 <g:link controller="studyWizard" params="[jump:'create']">create a new study</g:link>. 33 You can now <g:link class="linktips" title="View the study you just created / edited" controller="study" action="show" id="${study.id}">view the study</g:link>, 34 <g:link class="linktips" title="Edit the study you just created / edited" controller="studyWizard" params="[jump:((session.jump?.action == 'simpleedit') ? 'simpleedit' : 'edit')]" id="${study.id}">edit the study</g:link> 35 <g:if test="${quickSave}"> again</g:if>, 36 <g:link class="linktips" title="Import study data into this study" controller="gdtImporter" action="index" id="${study.id}">import study data</g:link> 37 or 38 <g:link class="linktips" title="Create a new study" controller="studyWizard" params="[jump:'create']">create a new study</g:link>. 32 39 33 40 </span>
Note: See TracChangeset
for help on using the changeset viewer.