Skip to content

Commit

Permalink
Fix #6 - optional notifications
Browse files Browse the repository at this point in the history
Fixes a bug in the mostly-complete implementation from
https://github.com/jgmize/export-tabs-urls/tree/optional-notifications

Also address:
  * alct#16
  * alct#35
  • Loading branch information
clach04 committed Dec 3, 2023
1 parent fa633c0 commit 736f9fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion options/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function saveOptions () {
ignorePinned: optionsIgnorePinned.checked,
formatCustom: optionsFormatCustom.value,
filterTabs: optionsFilterTabs.checked,
notifications: optionsNotifications.checked,
enableNotifications: optionsNotifications.checked,
customHeader: optionsCustomHeader.value
}
})
Expand Down
2 changes: 1 addition & 1 deletion popup/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,6 @@ function getOptions () {
optionsFormatCustom = items.options.formatCustom
optionsFilterTabs = items.options.filterTabs
optionsCustomHeader = items.options.customHeader
optionsNotifications = items.options.notifications
optionsNotifications = items.options.enableNotifications
})
}
1 change: 1 addition & 0 deletions shared/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ var w = window

var defaultOptions = {
'options': {
enableNotifications: true,
ignoreNonHTTP: true,
ignorePinned: false,
formatCustom: '',
Expand Down

0 comments on commit 736f9fa

Please sign in to comment.