change to fix WEB-164, some other UI updates

This commit is contained in:
Jason White 2014-09-24 21:07:30 -04:00
parent 302aff54a3
commit f6ac85168b
4 changed files with 9 additions and 8 deletions

View File

@ -176,9 +176,10 @@
<div id="cookiesAndParamsView">
<div class="cookiesView">
<h4>Cookies</h4>
<table class="cookieTable table-striped table-nonfluid" ng-repeat="cookie in cookies">
<div class="cookieContainer" ng-repeat="cookie in cookies">
<table class="cookieTable table-striped table-nonfluid" >
<thead>
<tr><th class="col-sm-1">Field</th><th class="col-sm-1">Value</th></tr>
<tr><th class="col-sm-1"></th><th class="col-sm-1"></th></tr> <!-- Field / Value -->
</thead>
<tbody>
<tr ng-repeat="(key, value) in cookie">
@ -190,6 +191,7 @@
<!--</ul>-->
</table>
</div>
</div>
<div id="paramsView"> <!--class="paramsView"-->
<h4>Params</h4>
<table class="paramsTable table-striped table-nonfluid" id="paramsTable">

View File

@ -716,10 +716,11 @@ fieldset[disabled] .btn-warning.active {
.table-nonfluid {
width:auto;
margin-bottom:15px;
}
.table-nonfluid {
cookieContainer {
margin-bottom:4px;
}
.cookieTable tr td, .paramsTable tr td {

View File

@ -102,8 +102,6 @@ goat.utils = {
function() {
var _url = $(el).attr('link');
$.get(_url, {success:showResponse});
//return $.get(_url, {}, null, "html");
//angular.element($('#leftside-navigation')).scope().renderLesson(curMenuItem,url);
}
)
}

View File

@ -151,7 +151,7 @@ WebSession webSession = ((WebSession)session.getAttribute("websession"));
</td>
<td width="190">&nbsp;</td>
<td width="76">
<form method="POST">
<form method="POST" action="<%=webSession.getCurrentLesson().getFormAction()%>">
<input type="submit" name="action" value="<%=CrossSiteScripting.LOGOUT_ACTION%>"/>
</form>
</td>