-
Notifications
You must be signed in to change notification settings - Fork 269
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
[Settings - Themes]: Implementing dropdown in settings to change themes #229
Conversation
8392e6d
to
d57723e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM % comments
console.log('Theme =' + theme); | ||
resolve(theme); | ||
}); | ||
}.bind(this)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vidorteg - I checked, and we do need this bind
call to access the getThemes
function
In the most recent patch, I did some things to clean up the code:
|
afa9438
to
7a5250b
Compare
This PR adds a settings dropdown to change the themes of the DevTools extension.
This PR also broadens the use of the settingsProvider (formerly tabSettingsProvider) to include the theme settings.
Closes #207