You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are integrating GeoGebra Notes as an external app into ownCloud Infinite Scale. During testing, it was identified that the camera functionality does not work as expected. The issue stems from the missing allow="camera" attribute in the <iframe> where GeoGebra Notes is loaded.
To enable camera functionality in GeoGebra Notes, we need to modify the allow attribute of the <iframe> tag to include camera. This change ensures that the browser grants the required permission to GeoGebra Notes for accessing the camera.
Action Plan:
Update Code:
Add allow="camera" to the iframe in the App.vue file of the web-app-external package.
Thank you chatGPT! Maybe it would be even better to use a parameter instead of allowing camera everywhere. But that depends on how much work that would be.
Background:
We are integrating GeoGebra Notes as an external app into ownCloud Infinite Scale. During testing, it was identified that the camera functionality does not work as expected. The issue stems from the missing allow="camera" attribute in the <iframe> where GeoGebra Notes is loaded.
Technical Context:
The relevant code can be found here:
App.vue Line 2-8
To enable camera functionality in GeoGebra Notes, we need to modify the allow attribute of the <iframe> tag to include camera. This change ensures that the browser grants the required permission to GeoGebra Notes for accessing the camera.
Action Plan:
Add allow="camera" to the iframe in the App.vue file of the web-app-external package.
The text was updated successfully, but these errors were encountered: