summaryrefslogtreecommitdiff
path: root/src/main/webapp
diff options
context:
space:
mode:
authorYoung Gyu Park <younggyu@google.com>2018-05-14 11:37:51 +0900
committerYoung Gyu Park <younggyu@google.com>2018-05-14 11:37:51 +0900
commit318e1e50229cbea128d19f956e6d2691cde27c72 (patch)
treee4e269d11c3048f3873ff34554e46d81b2570e0a /src/main/webapp
parent42818e99dfda76cb7a300dba243fcc4aa21a6e1b (diff)
downloaddashboard-318e1e50229cbea128d19f956e6d2691cde27c72.tar.gz
Fix gcs download bug
Test: go/vts-web-staging/show_plan_release?plan=vts&type=suite&page=1 Bug: 79605352 Change-Id: If73e7aae4e87b0f0089b0a3ad85a0beaf626eaef
Diffstat (limited to 'src/main/webapp')
-rw-r--r--src/main/webapp/WEB-INF/jsp/show_gcs_log.jsp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/webapp/WEB-INF/jsp/show_gcs_log.jsp b/src/main/webapp/WEB-INF/jsp/show_gcs_log.jsp
index f9f285e..8d73d34 100644
--- a/src/main/webapp/WEB-INF/jsp/show_gcs_log.jsp
+++ b/src/main/webapp/WEB-INF/jsp/show_gcs_log.jsp
@@ -30,7 +30,7 @@
var paraMap = {'path': '', 'entry': ''};
$('.modal').modal({
dismissible: true, // Modal can be dismissed by clicking outside of the modal
- opacity: .99, // Opacity of modal background
+ opacity: .5, // Opacity of modal background
inDuration: 300, // Transition in duration
outDuration: 200, // Transition out duration
startingTop: '4%', // Starting top style attribute
@@ -48,7 +48,7 @@
$.get( url, function(data) {
var entryList = $(modal).find('#modal-entry-list');
$(data.entryList).each(function( index, element ) {
- entryList.append("<li class='collection-item'><a href='#logEntryViewModal'>" + element + "</a></li>");
+ entryList.append("<li class='collection-item'><a href='#logEntryViewModal' class='modal-trigger'>" + element + "</a></li>");
});
}).done(function() {
$('.loading-overlay').hide();
@@ -103,7 +103,7 @@
<h4>File List</h4>
<div class="collection">
<c:forEach varStatus="fileLoop" var="fileName" items="${fileList}">
- <a href="#logEntryListModal" class="collection-item">
+ <a href="#logEntryListModal" class="collection-item modal-trigger">
<c:out value="${fileName}"></c:out>
</a>
<c:if test="${!fileLoop.last}">