mirror of https://github.com/jitsi/jitsi-meet
Close pages text are different depending whether feedback was provided or not.pull/1100/head
parent
e81a10de4a
commit
87f7be2182
@ -1,8 +1,30 @@ |
||||
<html> |
||||
<head> |
||||
<link rel="stylesheet" href="css/all.css"/> |
||||
<script><!--#include virtual="/interface_config.js" --></script> |
||||
<script>function translateStr(id, msg) { |
||||
var div = document.getElementById(id); |
||||
div.innerHTML = msg; |
||||
} |
||||
function translate() { |
||||
translateStr('hintMessage', |
||||
'You can use video calls with ' |
||||
+ interfaceConfig.APP_NAME +' for your business'); |
||||
} |
||||
</script> |
||||
</head> |
||||
<body> |
||||
<div class="redirectPageMessage">Thank you for your feedback!</div> |
||||
<body onload="translate();"> |
||||
<div class="redirectPageMessage"> |
||||
<div class="thanks-msg"> |
||||
<p id="thanksMessage">Thank you for your feedback!</p> |
||||
</div> |
||||
<div class="hint-msg"> |
||||
<p> |
||||
<span>Did you know?</span> |
||||
<span class="hint-msg__holder" id="hintMessage"></span> |
||||
</p> |
||||
<div class="happy-software"></div> |
||||
</div> |
||||
</div> |
||||
</body> |
||||
</html> |
||||
</html> |
||||
|
@ -0,0 +1,32 @@ |
||||
<html> |
||||
<head> |
||||
<link rel="stylesheet" href="css/all.css"/> |
||||
<script><!--#include virtual="/interface_config.js" --></script> |
||||
<script>function translateStr(id, msg) { |
||||
var div = document.getElementById(id); |
||||
div.innerHTML = msg; |
||||
} |
||||
function translate() { |
||||
translateStr('thanksMessage', |
||||
'Thank you for using ' + interfaceConfig.APP_NAME); |
||||
translateStr('hintMessage', |
||||
'You can use video calls with ' |
||||
+ interfaceConfig.APP_NAME +' for your business'); |
||||
} |
||||
</script> |
||||
</head> |
||||
<body onload="translate();"> |
||||
<div class="redirectPageMessage"> |
||||
<div class="thanks-msg"> |
||||
<p id="thanksMessage"></p> |
||||
</div> |
||||
<div class="hint-msg"> |
||||
<p> |
||||
<span>Did you know?</span> |
||||
<span class="hint-msg__holder" id="hintMessage"></span> |
||||
</p> |
||||
<div class="happy-software"></div> |
||||
</div> |
||||
</div> |
||||
</body> |
||||
</html> |
Loading…
Reference in new issue