Skip to content

Commit 19e3eff

Browse files
author
Jason White
committed
added view portion of cookies, to be updated per new mock-up
1 parent 50f936f commit 19e3eff

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/main/webapp/WEB-INF/pages/main_new.jsp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,13 @@
119119

120120
<div class="panel" id="cookiesAndParams">
121121
<div class="cookiesView">
122-
-- COOKIES GO HERE --
122+
cookies:
123+
<ul ng-repeat="cookie in cookies">
124+
<li ng-repeat="(key, value) in cookie">{{key}} :: {{ value }} </td>
125+
</ul>
123126
</div>
124127
<div> <!--class="paramsView"-->
125-
-- PARAMS GO HERE -- <br/>
128+
params:<br/>
126129
<ul>
127130
<li ng-repeat="param in params">
128131
{{param.name}} = {{param.value}}

src/main/webapp/css/main.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -758,10 +758,11 @@ fieldset[disabled] .btn-warning.active {
758758
.lessonHelp, .lessonHelpBtn {
759759
display: none;
760760
}
761-
761+
/*
762762
.paramsView {
763763
float:right;
764764
width 50%;
765765
margin-right:10px;
766766
border-left:2px solid #333;
767-
}
767+
}
768+
*/

0 commit comments

Comments
 (0)