Update readme and fix button title

This commit is contained in:
Ian Kent 2014-04-27 20:02:36 +01:00
parent 98c71bf455
commit 004e97d59b
2 changed files with 2 additions and 1 deletions

View file

@ -27,6 +27,7 @@ server will start on port 8025.
* Release messages to real SMTP servers * Release messages to real SMTP servers
* HTTP API to list, retrieve and delete messages * HTTP API to list, retrieve and delete messages
* Multipart MIME support * Multipart MIME support
* Download individual MIME parts
* In-memory message storage * In-memory message storage
* MongoDB storage for message persistence * MongoDB storage for message persistence
* Lightweight and portable * Lightweight and portable

View file

@ -181,7 +181,7 @@
</td> </td>
<td> <td>
<button class="btn btn-xs btn-default" title="Delete" ng-click="deleteOne(message)"><span class="glyphicon glyphicon-remove"></span></button> <button class="btn btn-xs btn-default" title="Delete" ng-click="deleteOne(message)"><span class="glyphicon glyphicon-remove"></span></button>
<a class="btn btn-xs btn-default" title="Delete" href="/api/v1/messages/{{ message.Id }}/download"><span class="glyphicon glyphicon-save"></span></a> <a class="btn btn-xs btn-default" title="Download" href="/api/v1/messages/{{ message.Id }}/download"><span class="glyphicon glyphicon-save"></span></a>
<button class="btn btn-xs btn-default" title="Release" ng-click="releaseOne(message)"><span class="glyphicon glyphicon-share"></span></button> <button class="btn btn-xs btn-default" title="Release" ng-click="releaseOne(message)"><span class="glyphicon glyphicon-share"></span></button>
</td> </td>
</tr> </tr>