Skip to content

Commit 54a2b46

Browse files
author
anastasiabouzdine
committed
modify some spelling in app
1 parent bf01341 commit 54a2b46

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

hf-data/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1>Pryv.io collect and visualize HF Data</h1>
2828
<div class="card-body">
2929
<h2 class="card-title">Welcome</h2>
3030
<br />
31-
<p>We invite you to evaluate our postural and kinetic tremor to check for Parkinson's disease symptoms using the following tracking task. Please login to start the test, and follow the instructions of the tracker.</p>
31+
<p>We invite you to evaluate your postural and kinetic tremor to check for Parkinson's disease symptoms using the following tracking task. Please login to start the test, and follow the instructions.</p>
3232

3333
</div>
3434
</div>
@@ -83,7 +83,7 @@ <h2 class="card-title" id="name-selection"></h2>
8383
<div class="card-body">
8484
<h2 class="card-title">Mouse Tracker</h2>
8585
<br/>
86-
<p>You can select the image of your choice in the selector, and start drawing by following the image outlines as precisely as possible. If you change the image, it will erase your drawing on the screen. You need to left click to begin and to stop drawing.</p>
86+
<p>You can select the image of your choice in the selector, and start drawing by following the image outlines as precisely as possible. If you change the image, it will erase your drawing on the screen. You need to left click on the image to begin and to stop drawing.</p>
8787
<br/>
8888
<select name="image-selector" id="image-selector">
8989
<option value="assets/images/heart.png">Heart</option>
@@ -100,9 +100,9 @@ <h2 class="card-title">Mouse Tracker</h2>
100100

101101
<div class="card" id="mouse-visualization" style="display:none">
102102
<div class="card-body">
103-
<h2 class="card-title">Mouse Visualization</h2>
103+
<h2 class="card-title">Stored Data Visualisation</h2>
104104
<br />
105-
<p>Click on previous/next to see the saved images. Click on current to see the current drawing.</p>
105+
<p>Click on previous/next to browse through the saved images. Click on current to follow the live drawing.</p>
106106
<br/>
107107
<span id="counter-mouse">Number of stored images: 0</span>
108108
<br />
@@ -135,7 +135,7 @@ <h2 class="card-title">Accelerometer Collect</h2>
135135
</div>
136136
<div class="card" id="accelerometer-visualization" style="display:none">
137137
<div class="card-body">
138-
<h2 class="card-title">Accelerometer Visualization</h2>
138+
<h2 class="card-title">Stored Data Visualization</h2>
139139
<br />
140140
<span id="counter-accelerometer">Number of stored recordings: 0</span>
141141
<br/>

hf-data/js/connection.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,11 +450,11 @@ function computeFrequency() {
450450
if (pryvHF.pryvConn) {
451451
if (pryvHF.measures.mouseX.event) {
452452
frequencyMouse.innerHTML =
453-
'Fetch frequency: ' + pointsSecondMouse + ' points/s';
453+
'Data points rate: ' + pointsSecondMouse + ' NUM/s';
454454
}
455455
if (pryvHF.measures.orientationGamma.event) {
456456
frequencyAccelerometer.innerHTML =
457-
'Fetch frequency: ' + pointsSecondAccelerometer + ' points/s';
457+
'Data points rate: ' + pointsSecondAccelerometer + ' NUM/s';
458458
}
459459
pointsSecondMouse = 0;
460460
pointsSecondAccelerometer = 0;

hf-data/js/view_only.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ async function buildVisualizationOnly(apiEndpoint, urlParams) {
88

99
const username = await pryvHF.pryvConn.username();
1010
document.getElementById('name-selection').innerHTML =
11-
'Data Collection Of ' + username;
11+
'Tracking sessions of ' + username;
1212

1313
const eventId_mouseX = urlParams.get('posXEventId');
1414
const eventId_mouseY = urlParams.get('posYEventId');

0 commit comments

Comments
 (0)