Skip to content

Commit c203465

Browse files
committed
Merge pull request #397 from 10gen/fix-auto-update-preferences
persist auto update choice in preferences.
2 parents d19619d + a16be98 commit c203465

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/app/network-optin/index.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
li
2828
label
2929
input(type='checkbox', name='autoUpdates', data-hook='auto-updates-checkbox')
30-
span Enable Auto Updates
31-
p.option-description Allow Compass to periodically check for new updates
30+
span Enable Automatic Updates
31+
p.option-description Allow Compass to periodically check for new updates.
3232

3333
p With any of these options, none of your personal information or stored data will be submitted.
3434

src/app/network-optin/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ var NetworkOptInView = View.extend({
1616
props: {
1717
trackErrors: ['boolean', true, true],
1818
enableFeedbackPanel: ['boolean', true, true],
19-
trackUsageStatistics: ['boolean', true, true]
19+
trackUsageStatistics: ['boolean', true, true],
20+
autoUpdates: ['boolean', true, true]
2021
},
2122
session: {
2223
preferences: 'state',

0 commit comments

Comments
 (0)