We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently our page visibliity state tracking code is part of our core vuex state: https://github.com/search?q=repo%3Alearningequality%2Fkolibri%20pageVisibility&type=code
This should be migrated to the browserInfo utilities module: https://github.com/learningequality/kolibri/blob/develop/packages/kolibri/utils/browserInfo.js
Instead of vuex state, we should create a VueJS ref to track the state in a reactive way, and export it from the module.
ref
Any existing references to the pageVisibility state should be updated to reference this new export from the module.
Ideally, these would be done by returning the value from the setup function of any components using it.
setup
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently our page visibliity state tracking code is part of our core vuex state: https://github.com/search?q=repo%3Alearningequality%2Fkolibri%20pageVisibility&type=code
This should be migrated to the browserInfo utilities module: https://github.com/learningequality/kolibri/blob/develop/packages/kolibri/utils/browserInfo.js
Instead of vuex state, we should create a VueJS
ref
to track the state in a reactive way, and export it from the module.Any existing references to the pageVisibility state should be updated to reference this new export from the module.
Ideally, these would be done by returning the value from the
setup
function of any components using it.The text was updated successfully, but these errors were encountered: