-
Notifications
You must be signed in to change notification settings - Fork 232
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
Changing Title When User Changes Tab #621
Comments
I Am A Beginner In This Field And Doing Small Changes Plese Give Me Suggestions For Contributing in Open Source |
It's not needed as of now and too easy issue.. Look upon issues where you can add value, you can see the active repos in GSSOC itself with their issues, what issues participants are raising, how they are describing it. |
Hi @agamjotsingh18 |
hey @agamjotsingh18 I want to work on this project, kindly assign it to me. |
I want to work on this issue. Kindly assign it to me. |
Is your feature request related to a problem? Please describe.
Just Want To Add New Feature When User Changes Tab The Title Of the Page Is Changed.
Like Currently The Title Is "CodeSetGo| Best Student Community",So We Can Change The Title "Make Learning Fun :)"
Describe the solution you'd like.
titleChange.txt
Describe alternatives you've considered.
`let docTitle = document.title;
window.addEventListener("blur", () =>{
document.title = "Make Learning Fun :)";
});
window.addEventListener("focus", () =>{
document.title = docTitle;
});`
Add any other context or screenshots about the feature request here.
Record
The text was updated successfully, but these errors were encountered: