Skip to content

Commit 69da270

Browse files
committed
Rename freestyle to canvas
1 parent 59f4dae commit 69da270

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

schemas/pagetypes/pagetype_freestyle.json schemas/pagetypes/pagetype_canvas.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"title": "Pagetype freestyle content",
4-
"description": "Description of the content of the Pagetype 'freestyle'",
3+
"title": "Pagetype canvas content",
4+
"description": "Description of the content of the Pagetype 'canvas'",
55
"type": "object",
66
"properties": {
77
"name":{

src/renderer/assets/stroop.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
{
6262
"module": "Stroop",
6363
"part": "StroopPre",
64-
"type": "freestyle",
64+
"type": "canvas",
6565
"autoNext": {
6666
"delay": 500
6767
},
@@ -73,7 +73,7 @@
7373
{
7474
"module": "Stroop",
7575
"part": "StroopInput",
76-
"type": "freestyle",
76+
"type": "canvas",
7777
"answerDelayToNextPage": 500,
7878
"autoNext": {
7979
"delay": 5000,

src/renderer/components/AdminPage/config.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Current Location: {{scriptLocation}}
1313
<br>
1414
Select new Location:
15-
<input type="file" style="border-style:solid;" id="hwScriptDir" @click="chooseDir()" @click.prevent=""/>
15+
<input type="file" id="hwScriptDir" @click="chooseDir()" @click.prevent=""/>
1616
</div>
1717
</div>
1818
</div>
@@ -25,7 +25,7 @@
2525
<div class="box-body">
2626
<div style="margin-left: 10px">
2727
Import File:
28-
<input type="file" style="border-style:solid;" id="surveyJSONDir" @click="addSurvey()" @click.prevent=""/>
28+
<input type="file" id="surveyJSONDir" @click="addSurvey()" @click.prevent=""/>
2929
</div>
3030
<hr>
3131
<div v-for="(survey, index) in surveys" v-bind:key="index">
@@ -50,7 +50,7 @@
5050
Current Location: {{assetLocation}}
5151
<br>
5252
Select new Location:
53-
<input type="file" style="border-style:solid;" id="picDir" @click="chooseAssetDir()" @click.prevent=""/>
53+
<input type="file" id="picDir" @click="chooseAssetDir()" @click.prevent=""/>
5454
</div>
5555
</div>
5656
</div>

src/renderer/router/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const router = new Router({
7171
]
7272
},
7373
{
74-
path:"/freestyle", name:"freestyle", component: require("@/components/SurveyPage/freestyle").default
74+
path:"/canvas", name:"canvas", component: require("@/components/SurveyPage/canvas").default
7575
},
7676
{
7777
path:"/explanation", name:"explanation", component: require("@/components/SurveyPage/explanation").default

0 commit comments

Comments
 (0)