Changeset 1802
- Timestamp:
- May 3, 2011, 2:33:45 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/taglib/dbnp/studycapturing/WizardTagLib.groovy
r1775 r1802 143 143 out << '<ul class="publication_list" id="' + attrs.name + '_list">'; 144 144 145 out << '<li >';146 out << '<span class="publication_none" id="' + attrs.name + '_none"style="display: ' + display_none + ';">';145 out << '<li class="empty" id="' + attrs.name + '_none" >'; 146 out << '<span class="publication_none" style="display: ' + display_none + ';">'; 147 147 out << 'No publications selected'; 148 148 out << '</span>'; … … 252 252 out << '<ul class="contact_list" id="' + attrs.name + '_list">'; 253 253 254 out << '<li >';255 out << '<span class="contacts_none" id="' + attrs.name + '_none"style="display: ' + display_none + ';">';254 out << '<li class="empty" id="' + attrs.name + '_none">'; 255 out << '<span class="contacts_none" style="display: ' + display_none + ';">'; 256 256 out << 'No contacts selected'; 257 257 out << '</span>'; -
trunk/web-app/css/simplewizard.css
r1685 r1802 11 11 div .simpleWizard .description { width: 170px; } 12 12 .simpleWizard .error, .simpleWizard .required { background-position: 150px 2px; } 13 #contacts .required { background-position: 2px 4px; padding-left: 20px; } 13 14 .samplespage td.required { background-position: 160px 6px; } 14 15 -
trunk/web-app/js/studywizard.js
r1794 r1802 360 360 361 361 // Hide the 'none box' 362 $('#' + element_id + '_none'). css('display', 'none');362 $('#' + element_id + '_none').hide(); 363 363 } 364 364 }, … … 389 389 // Show the 'none box' if needed 390 390 if (ids.length == 0) { 391 $('#' + element_id + '_none'). css('display', 'inline');391 $('#' + element_id + '_none').show(); 392 392 } 393 393 … … 562 562 563 563 // Hide the 'none box' 564 $('#' + element_id + '_none'). css('display', 'none');564 $('#' + element_id + '_none').hide(); 565 565 } 566 566 … … 587 587 // Show the 'none box' if needed 588 588 if (ids.length == 0) { 589 $('#' + element_id + '_none'). css('display', 'inline');589 $('#' + element_id + '_none').show(); 590 590 } 591 591
Note: See TracChangeset
for help on using the changeset viewer.