fix checkbox erratic behavior in some cases

This commit is contained in:
Athou
2013-04-08 16:00:41 +02:00
parent 99ce880fe0
commit 04af802336

View File

@@ -23,7 +23,7 @@
<div ng-bind-html-unsafe="entry.content"></div>
<div class="entry-buttons form-horizontal">
<label class="checkbox">
<input type="checkbox" value="{{!entry.read}}" ng-click="mark(entry, !entry.read)"></input>
<input type="checkbox" ng-checked="!entry.read" ng-click="mark(entry, !entry.read)"></input>
Keep unread
</label>
</div>