Correct spelling

Took 6 minutes
This commit is contained in:
2020-10-05 19:37:37 +02:00
parent 0408fc6bff
commit 5424a99a0a
3 changed files with 17 additions and 10 deletions

4
vendor/js/faq.js vendored
View File

@ -267,12 +267,12 @@ function welcomeMessage()
request( 'getWelcomeInfo', {}, function( result ) {
if ( result.data.is_owner === true )
{
welcomeModalText.html( 'You are the owner of this room.<br>This means you are allowed to ask and <strong>answer</strong> questions!<br><br>To share your room code, use the share-url or the room-code.' );
welcomeModalText.html( 'You are the owner of this room.<br>That means you are allowed to ask and <strong>answer</strong> questions!<br><br>To share your room code use the share-url or the room-code.' );
is_owner = true;
}
else
{
welcomeModalText.html( 'You are an guest of this room.<br>This means you are allowed to ask questions.<br>To ask a question, click on "Ask a question", then enter your name and your question.' );
welcomeModalText.html( 'You are a guest of this room.<br>That means you are allowed to ask questions.' );
is_owner = false;
}
setTimeout( function() { welcomeModalClose.prop( 'disabled', false ); }, 500 );