mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 23:33:31 +00:00
fix checkbox toggling (#440)
This commit is contained in:
committed by
Kyle Spearrin
parent
5ce3a4ae37
commit
f728585db3
@@ -9,8 +9,8 @@
|
||||
<div class="list-section">
|
||||
<div class="list-section-items">
|
||||
<div class="list-section-item list-section-item-checkbox">
|
||||
<label for="totp-copy">{{$ctrl.i18n.enableAutoFillOnPageLoad}}</label>
|
||||
<input id="totp-copy" type="checkbox" ng-model="$ctrl.enableAutoFillOnPageLoad"
|
||||
<label for="auto-fill">{{$ctrl.i18n.enableAutoFillOnPageLoad}}</label>
|
||||
<input id="auto-fill" type="checkbox" ng-model="$ctrl.enableAutoFillOnPageLoad"
|
||||
ng-change="$ctrl.updateAutoFillOnPageLoad()">
|
||||
</div>
|
||||
</div>
|
||||
@@ -69,8 +69,8 @@
|
||||
<div class="list-section">
|
||||
<div class="list-section-items">
|
||||
<div class="list-section-item list-section-item-checkbox">
|
||||
<label for="context-menu">{{$ctrl.i18n.disableFavicon}}</label>
|
||||
<input id="context-menu" type="checkbox" ng-model="$ctrl.disableFavicon"
|
||||
<label for="favicon">{{$ctrl.i18n.disableFavicon}}</label>
|
||||
<input id="favicon" type="checkbox" ng-model="$ctrl.disableFavicon"
|
||||
ng-change="$ctrl.updateDisableFavicon()">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user