Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions public/template/major-activity.utml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@
<% if (object.image && object.image.url) { %>
<p><img src="<%- (object.image.pump_io && object.image.pump_io.proxyURL) ? object.image.pump_io.proxyURL : object.image.url %>" class="img-polaroid object-image" /></p>
<% } %>
<% if (object.stream && object.stream.url) { %>
<p><video src="<%- object.stream.url %>" width="720" preload="auto" controls></video></p>
<% } %>
<div class="activity-content">
<%= object.content %>
</div>
Expand Down
3 changes: 3 additions & 0 deletions public/template/object.utml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
<% if (object.image && object.image.url) { %>
<p><img src="<%- object.image.url %>" class="img-polaroid" /></p>
<% } %>
<% if (object.stream && object.stream.url) { %>
<p><video src="<%- object.stream.url %>" width="720" preload="auto" controls></video></p>
<% } %>

<div class="object-content">
<%= object.content %>
Expand Down