postal.js/example/node/client/js/views/templates/wiretap.html
2012-04-23 01:15:34 -04:00

13 lines
No EOL
306 B
HTML

<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>