Im trying to hide some div if the checkbox is checked. When the box is checked is adds the md-checked class so i need to see if that is true and then hide the class notifications, is this the right approach ? Thank you
<div layout="row" layout-align="center center" layout-margin layout-fill class="confirm">
<md-checkbox ng-if="md-checked ? true : ????? " ng-model="" aria-label="">
</md-checkbox>
<a href="#" class="checkbox_alert"></a>
</div>
<div class="notification">
<lib-notification text="{{error}}" type="danger" ng-if="error">
</lib-notification>
</div>