mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 19:20:55 +00:00
Merge branch 'main' into feature-seed-rng
This commit is contained in:
commit
f2f9a00ae0
5
.changeset/sweet-cheetahs-grin.md
Normal file
5
.changeset/sweet-cheetahs-grin.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"@jspsych/config": minor
|
||||||
|
---
|
||||||
|
|
||||||
|
Implement an `updateUnpkgLinks` Gulp task to update each unpkg link with a precise version number to the corresponding package's current version as defined in the package's `package.json`.
|
5
.changeset/yellow-ducks-poke.md
Normal file
5
.changeset/yellow-ducks-poke.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"@jspsych/config": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Fix css path rewriting in `createCoreDistArchive` Gulp task when `link` tags do not end in `/>`
|
4
.github/FUNDING.yml
vendored
Normal file
4
.github/FUNDING.yml
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# These are supported funding model platforms
|
||||||
|
|
||||||
|
open_collective: jspsych
|
||||||
|
|
22
.github/workflows/build.yml
vendored
22
.github/workflows/build.yml
vendored
@ -2,9 +2,6 @@ name: build
|
|||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
env:
|
|
||||||
HUSKY: 0
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
name: Build, lint, and test on Node.js ${{ matrix.node }}
|
name: Build, lint, and test on Node.js ${{ matrix.node }}
|
||||||
@ -12,22 +9,35 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node: [14.x, 16.x]
|
node: [14, 16]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Setup Node.js ${{ matrix.node }}
|
- name: Setup Node.js ${{ matrix.node }}
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node }}
|
node-version: ${{ matrix.node }}
|
||||||
|
cache: npm
|
||||||
|
|
||||||
- name: Install npm@v7
|
- name: Install npm@v7
|
||||||
run: npm install -g npm@7
|
run: npm install -g npm@7
|
||||||
|
|
||||||
- name: Install dependencies and build packages
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
|
# Running this after `npm ci` because `npm ci` removes `node_modules`:
|
||||||
|
- name: Download Turborepo cache
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: node_modules/.cache/turbo
|
||||||
|
key: ${{ runner.os }}-node-${{ matrix.node }}-turbo-${{ hashFiles('node_modules/.cache/turbo') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-node-${{ matrix.node }}-turbo-
|
||||||
|
|
||||||
|
- name: Build packages
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
# TODO setup linting
|
# TODO setup linting
|
||||||
# - name: Lint
|
# - name: Lint
|
||||||
# run: npm run lint
|
# run: npm run lint
|
||||||
|
23
.github/workflows/release.yml
vendored
23
.github/workflows/release.yml
vendored
@ -1,8 +1,5 @@
|
|||||||
name: release
|
name: release
|
||||||
|
|
||||||
env:
|
|
||||||
HUSKY: 0
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
@ -21,13 +18,22 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Setup Node.js 16.x
|
- name: Setup Node.js 16
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: 16.x
|
node-version: 16
|
||||||
|
cache: npm
|
||||||
|
|
||||||
- name: Install dependencies and build packages
|
- name: Install dependencies
|
||||||
run: npm install
|
run: npm ci
|
||||||
|
|
||||||
|
- name: Download Turborepo cache
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: node_modules/.cache/turbo
|
||||||
|
key: ${{ runner.os }}-node-16-turbo-${{ hashFiles('node_modules/.cache/turbo') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-node-16-turbo-
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: npm run test -- --ci --maxWorkers=2
|
run: npm run test -- --ci --maxWorkers=2
|
||||||
@ -38,7 +44,8 @@ jobs:
|
|||||||
id: changesets
|
id: changesets
|
||||||
uses: changesets/action@v1
|
uses: changesets/action@v1
|
||||||
with:
|
with:
|
||||||
publish: npm run release
|
version: npm run changeset:version
|
||||||
|
publish: npm run changeset:publish
|
||||||
commit: "chore(release): version packages"
|
commit: "chore(release): version packages"
|
||||||
env:
|
env:
|
||||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,3 +10,4 @@ coverage/
|
|||||||
.vscode/
|
.vscode/
|
||||||
dist.zip
|
dist.zip
|
||||||
packages/jspsych/README.md
|
packages/jspsych/README.md
|
||||||
|
.turbo
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
||||||
@ -13,7 +13,7 @@
|
|||||||
<script src="https://unpkg.com/@jspsych/extension-webgazer@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/extension-webgazer@1.0.0"></script>
|
||||||
<link
|
<link
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css"
|
href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css"
|
||||||
/>
|
/>
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-animation@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-animation@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<style>
|
<style>
|
||||||
#jspsych-animation-image {
|
#jspsych-animation-image {
|
||||||
height: 80% !important;
|
height: 80% !important;
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-audio-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-audio-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
<script>
|
<script>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-audio-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-audio-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
<script>
|
<script>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-audio-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-audio-keyboard-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
<script>
|
<script>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-audio-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-audio-keyboard-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
<script>
|
<script>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-audio-slider-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-audio-slider-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
<script>
|
<script>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-audio-slider-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-audio-slider-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
<script>
|
<script>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-browser-check@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-browser-check@1.0.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
<script>
|
<script>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-browser-check@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-browser-check@1.0.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
<script>
|
<script>
|
||||||
@ -15,7 +15,7 @@
|
|||||||
const trial = {
|
const trial = {
|
||||||
type: jsPsychBrowserCheck,
|
type: jsPsychBrowserCheck,
|
||||||
inclusion_function: (data) => {
|
inclusion_function: (data) => {
|
||||||
return ['chrome', 'firefox'].contains(data.browser);
|
return ['chrome', 'firefox'].includes(data.browser);
|
||||||
},
|
},
|
||||||
exclusion_message: `<p>You must use Chrome or Firefox to complete this experiment.</p>`
|
exclusion_message: `<p>You must use Chrome or Firefox to complete this experiment.</p>`
|
||||||
};
|
};
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-browser-check@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-browser-check@1.0.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
<script>
|
<script>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-browser-check@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-browser-check@1.0.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
<script>
|
<script>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-call-function@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-call-function@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-call-function@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-call-function@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-call-function@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-call-function@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-canvas-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-canvas-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-canvas-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-canvas-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-canvas-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-canvas-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-canvas-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-canvas-keyboard-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-canvas-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-canvas-keyboard-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-canvas-slider-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-canvas-slider-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-canvas-slider-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-canvas-slider-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-categorize-animation@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-categorize-animation@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<style>
|
<style>
|
||||||
#jspsych-categorize-animation-stimulus {
|
#jspsych-categorize-animation-stimulus {
|
||||||
height: 80% !important;
|
height: 80% !important;
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-categorize-animation@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-categorize-animation@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<style>
|
<style>
|
||||||
#jspsych-categorize-animation-stimulus {
|
#jspsych-categorize-animation-stimulus {
|
||||||
height: 80% !important;
|
height: 80% !important;
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-categorize-html@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-categorize-html@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-categorize-image@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-categorize-image@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-cloze@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-cloze@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-cloze@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-cloze@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<!--<script src="../../packages/extension-mouse-tracking/dist/index.browser.js"></script>-->
|
<!--<script src="../../packages/extension-mouse-tracking/dist/index.browser.js"></script>-->
|
||||||
<script src="https://unpkg.com/@jspsych/extension-mouse-tracking@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/extension-mouse-tracking@1.0.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-external-html@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-external-html@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-free-sort@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-free-sort@1.0.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-fullscreen@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-fullscreen@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<style>
|
<style>
|
||||||
html,
|
html,
|
||||||
body {
|
body {
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-audio-response@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-audio-response@1.0.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-initialize-microphone@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-initialize-microphone@1.0.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css">
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css">
|
||||||
<style>
|
<style>
|
||||||
.jspsych-btn {margin-bottom: 10px;}
|
.jspsych-btn {margin-bottom: 10px;}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-audio-response@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-audio-response@1.0.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-initialize-microphone@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-initialize-microphone@1.0.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css">
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css">
|
||||||
<style>
|
<style>
|
||||||
.jspsych-btn {margin-bottom: 10px;}
|
.jspsych-btn {margin-bottom: 10px;}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-audio-response@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-audio-response@1.0.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-audio-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-audio-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-initialize-microphone@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-initialize-microphone@1.0.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css">
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css">
|
||||||
<style>
|
<style>
|
||||||
.jspsych-btn {margin-bottom: 10px;}
|
.jspsych-btn {margin-bottom: 10px;}
|
||||||
</style>
|
</style>
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-slider-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-slider-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-iat-html@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-iat-html@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-iat-image@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-iat-image@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-image-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-image-keyboard-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-image-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-image-keyboard-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-image-slider-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-image-slider-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-instructions@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-instructions@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-instructions@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-instructions@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-instructions@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-instructions@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-maxdiff@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-maxdiff@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-reconstruction@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-reconstruction@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-resize@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-resize@1.0.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-same-different-html@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-same-different-html@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-same-different-image@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-same-different-image@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-serial-reaction-time@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-serial-reaction-time@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-serial-reaction-time@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-serial-reaction-time@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-serial-reaction-time-mouse@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-serial-reaction-time-mouse@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-serial-reaction-time-mouse@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-serial-reaction-time-mouse@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-sketchpad@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-sketchpad@1.0.1"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-sketchpad@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-sketchpad@1.0.1"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-sketchpad@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-sketchpad@1.0.1"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-text@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-text@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey@0.1.1"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey@0.1.1"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@0.1.1/css/survey.css">
|
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@0.1.1/css/survey.css">
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
|
@ -3,10 +3,10 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey@0.1.1"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey@0.1.1"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@0.1.1/css/survey.css">
|
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@0.1.1/css/survey.css">
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
|
@ -3,10 +3,10 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey@0.1.1"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey@0.1.1"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@0.1.1/css/survey.css">
|
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@0.1.1/css/survey.css">
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
|
@ -3,10 +3,10 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey@0.1.1"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey@0.1.1"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@0.1.1/css/survey.css">
|
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@0.1.1/css/survey.css">
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-html-form@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-html-form@1.0.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-html-form@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-html-form@1.0.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-likert@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-likert@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-likert@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-likert@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-multi-choice@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-multi-choice@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-multi-choice@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-multi-choice@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-multi-select@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-multi-select@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-text@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-text@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-text@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-text@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-text@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-text@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-survey-text@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-survey-text@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-video-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-video-button-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-video-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-video-keyboard-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-video-slider-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-video-slider-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-virtual-chinrest@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-virtual-chinrest@1.0.0"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/svg.js/2.6.3/svg.min"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/svg.js/2.6.3/svg.min"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-virtual-chinrest@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-virtual-chinrest@1.0.0"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/svg.js/2.6.3/svg.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/svg.js/2.6.3/svg.min.js"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-virtual-chinrest@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-virtual-chinrest@1.0.0"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/svg.js/2.6.3/svg.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/svg.js/2.6.3/svg.min.js"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-visual-search-circle@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-visual-search-circle@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="docs-demo-timeline.js"></script>
|
<script src="docs-demo-timeline.js"></script>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-visual-search-circle@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-visual-search-circle@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css" />
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css" />
|
||||||
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body></body>
|
<body></body>
|
||||||
|
@ -8,7 +8,7 @@ To use an extension in an experiment, you'll load the extension file via a `<scr
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/extension-example@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/extension-example@1.0.0"></script>
|
||||||
</head>
|
</head>
|
||||||
```
|
```
|
||||||
|
@ -10,12 +10,12 @@ The [official version of WebGazer](https://webgazer.cs.brown.edu/#download) is c
|
|||||||
|
|
||||||
You must include the `webgazer.js` file in your experiment via a `<script>` tag.
|
You must include the `webgazer.js` file in your experiment via a `<script>` tag.
|
||||||
However, the `webgazer.js` file is not part of any of the jsPsych NPM packages and is therefore not available via the unpkg.com CDN.
|
However, the `webgazer.js` file is not part of any of the jsPsych NPM packages and is therefore not available via the unpkg.com CDN.
|
||||||
Instead, it can be found on the jsdelivr.net CDN at: "https://cdn.jsdelivr.net/gh/jspsych/jspsych@jspsych@7.1.1/examples/js/webgazer/webgazer.js".
|
Instead, it can be found on the jsdelivr.net CDN at: "https://cdn.jsdelivr.net/gh/jspsych/jspsych@jspsych@7.1.2/examples/js/webgazer/webgazer.js".
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/gh/jspsych/jspsych@7.1.1/examples/js/webgazer/webgazer.js"></script>
|
<script src="https://cdn.jsdelivr.net/gh/jspsych/jspsych@7.1.2/examples/js/webgazer/webgazer.js"></script>
|
||||||
</head>
|
</head>
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -33,8 +33,8 @@ The [webgazer extension](../extensions/webgazer.md) adds functionality to jsPsyc
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/gh/jspsych/jspsych@7.1.1/examples/js/webgazer/webgazer.js"></script>
|
<script src="https://cdn.jsdelivr.net/gh/jspsych/jspsych@7.1.2/examples/js/webgazer/webgazer.js"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/extension-webgazer@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/extension-webgazer@1.0.0"></script>
|
||||||
</head>
|
</head>
|
||||||
```
|
```
|
||||||
@ -167,7 +167,7 @@ If you have tips based on your own experience please consider sharing them on ou
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
||||||
@ -175,11 +175,11 @@ If you have tips based on your own experience please consider sharing them on ou
|
|||||||
<script src="https://unpkg.com/@jspsych/plugin-webgazer-init-camera@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-webgazer-init-camera@1.0.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-webgazer-calibrate@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-webgazer-calibrate@1.0.0"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-webgazer-validate@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-webgazer-validate@1.0.0"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/gh/jspsych/jspsych@7.1.1/examples/js/webgazer/webgazer.js"></script>
|
<script src="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@jspsych@7.1.2/examples/js/webgazer/webgazer.js"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/extension-webgazer@1.0.0"></script>
|
<script src="https://unpkg.com/@jspsych/extension-webgazer@1.0.0"></script>
|
||||||
<link
|
<link
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css"
|
href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css"
|
||||||
/>
|
/>
|
||||||
<style>
|
<style>
|
||||||
.jspsych-btn {
|
.jspsych-btn {
|
||||||
@ -388,4 +388,4 @@ If you have tips based on your own experience please consider sharing them on ou
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -13,7 +13,7 @@ To use a plugin, you'll need to load the plugin's JavaScript file in your experi
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1" type="text/javascript"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2" type="text/javascript"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-image-keyboard-response@1.1.0" type="text/javascript"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-image-keyboard-response@1.1.0" type="text/javascript"></script>
|
||||||
</head>
|
</head>
|
||||||
```
|
```
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Intergrating with Prolific
|
# Integrating with Prolific
|
||||||
|
|
||||||
[Prolific](https://www.prolific.co/?ref=5JCXZPVU) is a participant recruitment service aimed at research. Integrating a jsPsych experiment with Prolific requires capturing the participant's ID and sending the participant to a completion URL at the end of the experiment.
|
[Prolific](https://www.prolific.co/?ref=5JCXZPVU) is a participant recruitment service aimed at research. Integrating a jsPsych experiment with Prolific requires capturing the participant's ID and sending the participant to a completion URL at the end of the experiment.
|
||||||
|
|
||||||
|
@ -86,9 +86,9 @@ In the example below, the default font size is set to 25px throughout the experi
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css">
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css">
|
||||||
<style>
|
<style>
|
||||||
.jspsych-display-element {
|
.jspsych-display-element {
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
@ -105,9 +105,9 @@ This example shows how to add a custom CSS file in addition to the styles provid
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-image-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-image-keyboard-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css">
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css">
|
||||||
<link rel="stylesheet" href="my_experiment_style.css">
|
<link rel="stylesheet" href="my_experiment_style.css">
|
||||||
</head>
|
</head>
|
||||||
```
|
```
|
||||||
@ -138,9 +138,9 @@ You can use a static `css_classes` parameter value if you always want to apply t
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css">
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css">
|
||||||
<style>
|
<style>
|
||||||
.fixation {font-size: 90px; font-weight: bold; color: gray;}
|
.fixation {font-size: 90px; font-weight: bold; color: gray;}
|
||||||
</style>
|
</style>
|
||||||
@ -176,9 +176,9 @@ In the example below, the CSS selector `.left-align #stimulus` selects the eleme
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css">
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css">
|
||||||
<style>
|
<style>
|
||||||
.left-align #stimulus {text-align: left; width: 600px;}
|
.left-align #stimulus {text-align: left; width: 600px;}
|
||||||
.right-align #stimulus {text-align: right; width: 600px;}
|
.right-align #stimulus {text-align: right; width: 600px;}
|
||||||
@ -206,9 +206,9 @@ It's also possible to pass multiple class names to the `css_classes` parameter.
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<head>
|
<head>
|
||||||
<script src="https://unpkg.com/jspsych@7.1.1"></script>
|
<script src="https://unpkg.com/jspsych@7.1.2"></script>
|
||||||
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.0"></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.1/css/jspsych.css">
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.1.2/css/jspsych.css">
|
||||||
<style>
|
<style>
|
||||||
.left-align #stimulus {text-align: left; width: 600px;}
|
.left-align #stimulus {text-align: left; width: 600px;}
|
||||||
.right-align #stimulus {text-align: right; width: 600px;}
|
.right-align #stimulus {text-align: right; width: 600px;}
|
||||||
|
@ -96,7 +96,7 @@ As with all simulated plugins, you can override the default (actual) data with f
|
|||||||
var trial = {
|
var trial = {
|
||||||
type: jsPsychBrowserCheck,
|
type: jsPsychBrowserCheck,
|
||||||
inclusion_function: (data) => {
|
inclusion_function: (data) => {
|
||||||
return ['chrome', 'firefox'].contains(data.browser);
|
return ['chrome', 'firefox'].includes(data.browser);
|
||||||
},
|
},
|
||||||
exclusion_message: `<p>You must use Chrome or Firefox to complete this experiment.</p>`
|
exclusion_message: `<p>You must use Chrome or Firefox to complete this experiment.</p>`
|
||||||
};
|
};
|
||||||
@ -149,4 +149,4 @@ As with all simulated plugins, you can override the default (actual) data with f
|
|||||||
<iframe src="../../demos/jspsych-browser-check-demo4.html" width="90%;" height="500px;" frameBorder="0"></iframe>
|
<iframe src="../../demos/jspsych-browser-check-demo4.html" width="90%;" height="500px;" frameBorder="0"></iframe>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a target="_blank" rel="noopener noreferrer" href="../../demos/jspsych-browser-check-demo4.html">Open demo in new tab</a>
|
<a target="_blank" rel="noopener noreferrer" href="../../demos/jspsych-browser-check-demo4.html">Open demo in new tab</a>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# webgazer-calibrate
|
# webgazer-calibrate
|
||||||
|
|
||||||
This plugin can be used to calibrate the [WebGazer extension](../extensions/webgazer). For a narrative description of eye tracking with jsPsych, see the [eye tracking overview](../overview/eye-tracking).
|
This plugin can be used to calibrate the [WebGazer extension](../extensions/webgazer.md). For a narrative description of eye tracking with jsPsych, see the [eye tracking overview](../overview/eye-tracking.md).
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ In addition to the [default data collected by all plugins](../overview/plugins.m
|
|||||||
Name | Type | Value
|
Name | Type | Value
|
||||||
-----|------|------
|
-----|------|------
|
||||||
|
|
||||||
No data currently added by this plugin. Use the [webgazer-validate](jspsych-webgazer-validate) plugin to measure the precision and accuracy of calibration.
|
No data currently added by this plugin. Use the [webgazer-validate](../webgazer-validate) plugin to measure the precision and accuracy of calibration.
|
||||||
|
|
||||||
## Simulation Mode
|
## Simulation Mode
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user