postal.js/example/node/client/js/views/templates/wiretap.html

13 lines
306 B
HTML
Raw Normal View History

<h3>A Somewhat Pointless Feed of the postal.js Wiretap:</h3>
<div class="scrollableDiv">
<% if( messages.length ) { %>
<% _.each( messages, function( msg ) { %>
<div>
<%= msg.text %>
</div>
<hr>
<% }) %>
<% } else { %>
<em>Waiting on more data to come through the wiretap...</em>
<% } %>
</div>