+
-
+
diff --git a/templates/faq.tmpl.html b/templates/faq.tmpl.html
index b6d7359..d93e853 100755
--- a/templates/faq.tmpl.html
+++ b/templates/faq.tmpl.html
@@ -159,7 +159,7 @@
Welcome - ReadMe first
- In the following page you can ask as many questions you want.
Your question should contain 10 up to 500 characters.
Only the owner or permitted users of this room can answer your question.
+ In the following page you can ask as many questions as you want.
Your question should contain 10 up to 500 characters.
Only the owner or permitted users of this room can answer your question.
You are an XXX of this room.
This means you can XXX
diff --git a/vendor/js/faq.js b/vendor/js/faq.js
index e3d1646..86259da 100644
--- a/vendor/js/faq.js
+++ b/vendor/js/faq.js
@@ -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.
This means you are allowed to ask and answer questions!
To share your room code, use the share-url or the room-code.' );
+ welcomeModalText.html( 'You are the owner of this room.
That means you are allowed to ask and answer questions!
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.
This means you are allowed to ask questions.
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.
That means you are allowed to ask questions.' );
is_owner = false;
}
setTimeout( function() { welcomeModalClose.prop( 'disabled', false ); }, 500 );