Skip to content

Commit 70212b2

Browse files
committed
Fixed issue in summaries
1 parent 00d0527 commit 70212b2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

marlo-web/src/main/webapp/WEB-INF/views/summaries/boardSummaries.ftl

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
</div>
102102
</div>
103103

104+
</div>
104105
</div>
105106
[#-- -- -- Partners reports -- -- --]
106107
<div id="partners-contentOptions" style="display:none">
@@ -123,7 +124,6 @@
123124
<span class="fa fa-file-excel-o col-md-12 excelIcon"></span>
124125
</div>
125126
</div>
126-
</div>
127127

128128

129129
[#-- Deliverables reports --]

marlo-web/src/main/webapp/js/summaries/boardSummaries.js

+2
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,13 @@ function validateInputTerms() {
136136
function selectSummariesSection(e) {
137137
e.preventDefault();
138138
var $section = $(e.target).parents('.summariesSection');
139+
139140
var $content = $('#' + $section.attr('id') + '-contentOptions');
140141
$section.siblings().removeClass('current');
141142
$section.addClass('current');
142143
$content.siblings().hide();
143144
$content.fadeIn();
145+
console.log($content);
144146

145147
// Uncheck from formOptions the option selected
146148
$("input[name='projectID']").val("-1");

0 commit comments

Comments
 (0)