Skip to content

Commit

Permalink
Fix escrow word break
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Hoffman committed May 13, 2014
1 parent a60a98f commit 06aef03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ <h3 class="modal-title">Order #{{orderId}}</h3>
</tr>
<tr>
<td><strong>Escrows:</strong></td>
<td style="word-break:break-all"><ul id="modalEscrows"></ul></td>
<td><ul id="modalEscrows"></ul></td>
</tr>
<tr>
<td><strong>Payment Address:</strong></td>
Expand Down
2 changes: 1 addition & 1 deletion html/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ angular.module('app').controller('Market', ['$scope', function($scope) {
$('#modalCreated').html(new Date(msg.order.created*1000));

msg.order.escrows.forEach(function(escrow) {
escrows = "<li>" + escrow + "</li>";
escrows = '<li style="word-break:break-all">' + escrow + "</li>";
});

$('#modalEscrows').html(escrows);
Expand Down

0 comments on commit 06aef03

Please sign in to comment.