Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/wise-months-raise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@jspsych/plugin-emoji-screen": patch
---

add moon emoji to default emoji options
34 changes: 34 additions & 0 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: OSSF Scorecard

on:
push:
branches: [main]
pull_request:
schedule:
- cron: "0 0 * * 0"

permissions:
contents: read
security-events: write
actions: read

jobs:
scorecard:
name: OSSF Scorecard action
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: OSSF Scorecard action
uses: ossf/scorecard-action@v2.4.3
with:
results_file: results.sarif
results_format: sarif
publish_results: true

- name: Upload SARIF results
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif
2 changes: 1 addition & 1 deletion packages/plugin-button-click-counter/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"resolveJsonModule": true
},
"include": ["src"]
}
}
2 changes: 1 addition & 1 deletion packages/plugin-emoji-screen/examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

var trial = {
type: jsPsychEmojiScreen,
emojis: ["πŸ˜€", "πŸŽ‰", "⭐", "🌟", "🎈", "πŸ¦„", "πŸ•", "🎸"],
emojis: ["πŸ˜€", "πŸŽ‰", "⭐", "🌟", "🎈", "πŸ¦„", "πŸ•", "🎸","πŸŒ™"],
key_to_finish: "Enter",
prompt: "<p>Click anywhere to place emojis. Press <strong>Enter</strong> when you are done.</p>",
};
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-emoji-screen/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const info = <const>{
emojis: {
type: ParameterType.STRING,
array: true,
default: ["πŸ˜€", "πŸŽ‰", "⭐", "🌟", "🎈", "πŸ¦„", "πŸ•", "🎸"],
default: ["πŸ˜€", "πŸŽ‰", "⭐", "🌟", "🎈", "πŸ¦„", "πŸ•", "🎸","πŸŒ™"],
},
/** The key that ends the trial and records the final emoji arrangement. */
key_to_finish: {
Expand Down
Loading