Skip to content

Commit

Permalink
Merge pull request #50 from eduNEXT/and/PE-74_translations
Browse files Browse the repository at this point in the history
fix errors
  • Loading branch information
ericfab179 authored Sep 7, 2018
2 parents f989fcd + f125e97 commit 2ebf5c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rocketc/static/html/rocketc.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{% if "authToken" in response %}
<div class="embed-container">
<iframe style="width:0;height:0;border:0; border:none;" src="{{public_url_service}}/home?authToken={{response.authToken}}&userId={{response.userId}}" >{% trans "IFrame is not supported" %}" %}</iframe>
<iframe id="myframe" src="{{public_url_service}}/group/{{user_data.default_group}}?layout=embedded" >{% trans "IFrame is not supported" %}</iframe>
<iframe id="myframe" src="{{public_url_service}}/group/{{response.default_group}}?layout=embedded" allow="camera; microphone">{% trans "IFrame is not supported" %}</iframe>
</div>
<div id="tool-buttons" data-domain="{{public_url_service}}/group/" data-user-id="{{response.userId}}" data-token="{{response.authToken}}" data-default="{{response.default_group}}">
<div>
Expand Down Expand Up @@ -60,7 +60,7 @@

{% if "authToken" in response %}
<div class="embed-container">
<iframe id="myframe" src="{{public_url_service}}/home?authToken={{response.authToken}}&userId={{response.userId}}" >{% trans "IFrame is not supported" %}</iframe>
<iframe id="myframe" src="{{public_url_service}}/home?authToken={{response.authToken}}&userId={{response.userId}}" allow="camera; microphone">{% trans "IFrame is not supported" %}</iframe>
</div>
{% else %}
{{response}}
Expand Down

0 comments on commit 2ebf5c0

Please sign in to comment.