mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-08 09:43:42 +01:00
fix checkbox toggling (#440)
This commit is contained in:
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>
|
||||
|
Loading…
Reference in New Issue
Block a user