This commit is contained in:
Athou
2013-04-09 13:37:00 +02:00
parent e718586e22
commit 7d982a440a
5 changed files with 57 additions and 0 deletions

View File

@@ -24,6 +24,12 @@
</h4>
</div>
<div ng-bind-html-unsafe="entry.content"></div>
<video controls ui-if="entry.enclosureType && entry.enclosureType.indexOf('video') == 0">
<source src="{{entry.enclosureUrl}}" type="{{entry.enclosureType}}" />
</video>
<audio controls ui-if="entry.enclosureType && entry.enclosureType.indexOf('audio') == 0">
<source src="{{entry.enclosureUrl}}" type="{{entry.enclosureType}}" />
</audio>
<div class="entry-buttons form-horizontal">
<label class="checkbox">
<input type="checkbox" ng-checked="!entry.read" ng-click="mark(entry, !entry.read)"></input>