Skip to content

Commit

Permalink
Quick fix for clients list display
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Sangoi committed Jul 16, 2014
1 parent dfefb04 commit 9844372
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
4 changes: 0 additions & 4 deletions leshan-standalone/src/main/resources/webapp/css/lw-app.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@
border: 1px solid #2DA0FD;
}

.client-icon {
background: url('../img/client-icon.png') center no-repeat;
}

.client-detail div {
height: 100%;
line-height: 60px;
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@
<h4><p class="text-center">Connected clients: {{clients.length}}</p></h4>

<li ng-repeat="client in clients" class="client-detail">
<div class="col-md-1 client-icon"></div>

<div class="col-md-3">
<span class="client-attr-title">Reg. ID</span> <span>{{client.registrationId}}</span>
<div class="col-md-4">
<span class="client-attr-title">Endpoint</span> <span>{{client.endpoint}}</span>
</div>

<div class="col-md-3">
<span class="client-attr-title">Endpoint</span> <span>{{client.endpoint}}</span>
<span class="client-attr-title">Reg. ID</span> <span>{{client.registrationId}}</span>
</div>

<div class="col-md-4">
<span class="client-attr-title">Reg. date</span> <span>{{client.registrationDate}}</span>
</div>
Expand Down

0 comments on commit 9844372

Please sign in to comment.