Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show onboarding on first start #2

Merged
merged 2 commits into from Oct 16, 2020
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Next

fix: show the onboarding on first start

  • Loading branch information
chrmod committed Oct 16, 2020
commit 4711c2980ac3e94fea447a920e36ccf7fe3af75c
@@ -1,6 +1,6 @@
async function onboarding() {
const { isOnboardingCompleted } = await browser.storage.local.get("isOnboardingCompleted");
if (isOnboardingCompleted) {
if (!isOnboardingCompleted) {
await browser.tabs.create({
url: browser.extension.getURL('pages/choice-screen.html'),
});
ProTip! Use n and p to navigate between commits in a pull request.