<div class='someClass'>
<label ng-repeat="item in itemList">
<input type='checkbox' checklist-model='itemCheckList' checklist-value='item.name'>
<span class='label-text' ng-bind-html="item.name"></span>
</label>
</div>
Looking for a way to dynamically change the font weight to bold when a checkbox is checked, and back to normal when unchecked. Any suggestions on how to achieve this? Much appreciated!