diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-13 12:32:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-13 12:32:43 -0500 |
commit | 14b9e0621b34d34411c1e3eec8ff1d89b6717756 (patch) | |
tree | ba61a325b45f1ced24b63a3e614ba41f5b032bcb /ext/bg/js/backend.js | |
parent | 5d2edda7534360def79921eb9d38ef72b4f6da04 (diff) |
Updated welcome page (#1107)
* Make storage controller optional
* Make more elements optional
* Update styles
* Create new welcome page
* Update URL for welcome guide
* Remove old guide
* Fix unused global
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index b2ea3cd6..3229e278 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -206,7 +206,7 @@ class Backend { const options = this.getOptions({current: true}); if (options.general.showGuide) { - chrome.tabs.create({url: chrome.runtime.getURL('/bg/guide.html')}); + chrome.tabs.create({url: chrome.runtime.getURL('/bg/welcome.html')}); } this._clipboardMonitor.on('change', this._onClipboardTextChange.bind(this)); |