Skip to content

Commit

Permalink
replace all minified script imports with base browser in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jadeddelta committed Dec 3, 2024
1 parent 528a67a commit f02d18e
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/extension-countdown/examples/example.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Countdown Extension Example</title>
<script src="https://unpkg.com/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="../dist/index.browser.min.js"></script>
<script src="../dist/index.browser.js"></script>
<link href="https://unpkg.com/[email protected]/css/jspsych.css" rel="stylesheet" />
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-copying-task/examples/example.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<script src="https://www.unpkg.com/[email protected]/dist/fabric.js"></script>

<script src="../dist/index.browser.min.js"></script>
<script src="../dist/index.browser.js"></script>
</head>
<body>

Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-gamepad/examples/basic.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>jspsych-gamepad plugin test</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
<script src="https://unpkg.com/[email protected]"></script>
<script src="../dist/index.browser.min.js"></script>
<script src="../dist/index.browser.js"></script>
</head>
<body>
<script>
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-gamepad/examples/minature-gamepad.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>jspsych-gamepad plugin test</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
<script src="https://unpkg.com/[email protected]"></script>
<script src="../dist/index.browser.min.js"></script>
<script src="../dist/index.browser.js"></script>
</head>
<body>
<script>
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-gamepad/examples/move-a-ball.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>jspsych-gamepad plugin test</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
<script src="https://unpkg.com/[email protected]"></script>
<script src="../dist/index.browser.min.js"></script>
<script src="../dist/index.browser.js"></script>
</head>
<body>
<script>
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-gamepad/examples/vibration.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>jspsych-gamepad plugin test</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
<script src="https://unpkg.com/[email protected]"></script>
<script src="../dist/index.browser.min.js"></script>
<script src="../dist/index.browser.js"></script>
</head>
<body>
<script>
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-ios/examples/classic.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html>
<head>
<script src="https://unpkg.com/[email protected]"></script>
<script src="../dist/index.browser.min.js"></script>
<script src="../dist/index.browser.js"></script>
<link href="https://unpkg.com/[email protected]/css/jspsych.css" rel="stylesheet" type="text/css" />
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-ios/examples/group.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html>
<head>
<script src="https://unpkg.com/[email protected]"></script>
<script src="../dist/index.browser.min.js"></script>
<script src="../dist/index.browser.js"></script>
<link href="https://unpkg.com/[email protected]/css/jspsych.css" rel="stylesheet" type="text/css" />
</head>
<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<script src="https://unpkg.com/[email protected]/dist/index.browser.js"></script>
<script src="https://unpkg.com/@jspsych/[email protected]/dist/index.browser.js"></script>
<script src="https://unpkg.com/jszip/dist/jszip.js"></script>
<script src="../dist/index.browser.min.js"></script>
<script src="../dist/index.browser.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
</head>

Expand Down
2 changes: 1 addition & 1 deletion templates/extension-template-js/examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<script src="https://unpkg.com/[email protected]"></script>
<!-- Example plugin an extension may work with -->
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="../dist/index.browser.min.js"></script>
<script src="../dist/index.browser.js"></script>
<link href="https://unpkg.com/[email protected]/css/jspsych.css" rel="stylesheet" />
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion templates/extension-template-ts/examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<script src="https://unpkg.com/[email protected]"></script>
<!-- Example plugin an extension may work with -->
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="../dist/index.browser.min.js"></script>
<script src="../dist/index.browser.js"></script>
<link href="https://unpkg.com/[email protected]/css/jspsych.css" rel="stylesheet" />
</head>
<body>
Expand Down

0 comments on commit f02d18e

Please sign in to comment.