Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
fix: 🐛 HTML string type to string
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashi1997 committed Feb 10, 2021
1 parent 0ebbc9e commit 6e12fce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion trials/showMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const { baseStimulus } = require("../lib/markup/stimuli");
* @param {Object} options
* @param {string} options.responseType - This tells jsPsych which plugin file to use to run the trial.
* @param {number} options.duration - The trial duration in milliseconds.
* @param {HTML string} options.stimulus - Onscreen stimulus in HTML to be shown in the trial, if not set default text is empty. If the stimulus is not provided, message should be provided as a string.
* @param {string} options.stimulus - Onscreen stimulus in HTML to be shown in the trial, if not set default text is empty. If the stimulus is not provided, message should be provided as a string.
* @param {string} options.message - Onscreen message to be shown in the trial, if not set default text is empty.
* @param {boolean} options.onstart - True if the message is to be display on start of the trial. False if the message needs to be in the stimulus.(default: false)
* @param {boolean} options.responseEndsTrial - True if the trial ends on response,false if the trial waits for the duration, by default false value.
Expand Down
2 changes: 1 addition & 1 deletion trials/userId.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const { baseStimulus } = require("../lib/markup/stimuli");
* @param {boolean} config.USE_MTURK - USE_MTURK flag
* @param {Object} options
* @param {number} options.duration - The trial duration in milliseconds.
* @param {HTML string} options.stimulus - Onscreen stimulus in HTML to be shown in the trial, if not set default text is empty. If the stimulus is not provided, message should be provided as a string.
* @param {string} options.stimulus - Onscreen stimulus in HTML to be shown in the trial, if not set default text is empty. If the stimulus is not provided, message should be provided as a string.
* @param {string} options.setIdMessage - Onscreen text for setting user id or for the input box to enter patient id.
* @param {boolean} options.responseEndsTrial - True if the trial ends on response,false if the trial waits for the duration, by default false value.
* @param {boolean} options.defaultPatientId - The patient id to show when requesting a patient ID, if not set default is empty.
Expand Down

0 comments on commit 6e12fce

Please sign in to comment.