Correct spelling

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

21
.idea/workspace.xml generated
View File

@ -33,7 +33,7 @@
<execution />
</component>
<component name="DarkyenusTimeTracker">
<option name="totalTimeSeconds" value="92307" />
<option name="totalTimeSeconds" value="92688" />
<option name="gitIntegration" value="true" />
<option name="naggedAbout" value="1" />
</component>
@ -79,7 +79,7 @@
<updated>1601618466935</updated>
<workItem from="1601618467981" duration="36776000" />
<workItem from="1601809534320" duration="1558000" />
<workItem from="1601811106543" duration="26442000" />
<workItem from="1601811106543" duration="27303000" />
</task>
<task id="LOCAL-00001" summary="Initial commit">
<created>1601618764031</created>
@ -319,7 +319,14 @@
<option name="project" value="LOCAL" />
<updated>1601915188719</updated>
</task>
<option name="localTasksCounter" value="35" />
<task id="LOCAL-00035" summary="increase answer size">
<created>1601915871071</created>
<option name="number" value="00035" />
<option name="presentableId" value="LOCAL-00035" />
<option name="project" value="LOCAL" />
<updated>1601915871071</updated>
</task>
<option name="localTasksCounter" value="36" />
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
@ -338,7 +345,6 @@
<option name="oldMeFiltersMigrated" value="true" />
</component>
<component name="VcsManagerConfiguration">
<MESSAGE value="Fixing a little things" />
<MESSAGE value="Should be the final commit" />
<MESSAGE value="&#10;Updating database-conf" />
<MESSAGE value="Final COMMIT!!!" />
@ -363,7 +369,8 @@
<MESSAGE value="Store interval in a variable to turn it off later" />
<MESSAGE value="Performance update, add setup for refresh rate" />
<MESSAGE value="Update optionsModal" />
<option name="LAST_COMMIT_MESSAGE" value="Update optionsModal" />
<MESSAGE value="increase answer size" />
<option name="LAST_COMMIT_MESSAGE" value="increase answer size" />
</component>
<component name="WindowStateProjectService">
<state x="728" y="326" width="800" height="683" key="#com.intellij.execution.impl.EditConfigurationsDialog" timestamp="1601632929047">
@ -402,10 +409,10 @@
<screen x="0" y="34" width="1920" height="1046" />
</state>
<state x="441" y="192" width="1037" height="736" key="SettingsEditor/0.34.1920.1046@0.34.1920.1046" timestamp="1601632853044" />
<state x="555" y="292" width="800" height="535" key="Vcs.Push.Dialog.v2" timestamp="1601915189764">
<state x="555" y="292" width="800" height="535" key="Vcs.Push.Dialog.v2" timestamp="1601915872297">
<screen x="0" y="34" width="1920" height="1046" />
</state>
<state x="555" y="292" width="800" height="535" key="Vcs.Push.Dialog.v2/0.34.1920.1046@0.34.1920.1046" timestamp="1601915189764" />
<state x="555" y="292" width="800" height="535" key="Vcs.Push.Dialog.v2/0.34.1920.1046@0.34.1920.1046" timestamp="1601915872297" />
<state x="809" y="122" width="639" height="876" key="com.intellij.database.view.ui.AbstractDbRefactoringDialog" timestamp="1601632983240">
<screen x="0" y="34" width="1920" height="1046" />
</state>

View File

@ -159,7 +159,7 @@
<h5 class="modal-title text-info" id="welcomeModalLabel">Welcome - ReadMe first</h5>
</div>
<div class="modal-body">
<span>In the following page you can ask as many questions you want.<br>Your question should contain 10 up to 500 characters.<br>Only the owner or permitted users of this room can answer your question.</span>
<span>In the following page you can ask as many questions as you want.<br>Your question should contain 10 up to 500 characters.<br>Only the owner or permitted users of this room can answer your question.</span>
<hr>
<span id="welcomeModalText" class="text-justify">You are an XXX of this room.<br>This means you can XXX</span>
<br><br>

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 );