Set link protocol in docs to https

This commit is contained in:
dgromer 2015-03-29 15:41:11 +02:00
parent b8df41aa4e
commit 53e88f22e2
5 changed files with 25 additions and 26 deletions

View File

@ -1,7 +1,7 @@
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-50563838-1', 'jspsych.org');
ga('send', 'pageview');

View File

@ -7,8 +7,8 @@ The similarity plugin displays two stimuli sequentially. The stimuli can be imag
This plugin requires the jQuery UI javascript library and accompanying CSS theme. To use this library, you must include both. Google hosts versions of both, which you can use in your project by including the following two lines in the `<head>` section of the HTML document:
```html
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<link href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/black-tie/jquery-ui.min.css" rel="stylesheet" type="text/css"></link>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/black-tie/jquery-ui.min.css" rel="stylesheet" type="text/css"></link>
```
This example uses the 'black-tie' theme, but any theme should work.
@ -43,4 +43,3 @@ sim_score | numeric | The position of the slider when the subject submitted thei
rt | numeric | The response time in milliseconds for the subject to make a response. The time is measured from when the response slider first appears on the screen until the subject's response.
## Example

View File

@ -7,8 +7,8 @@ The survey-likert plugin displays a set of questions with Likert scale responses
This plugin requires the jQuery UI javascript library and accompanying CSS theme. To use this library, you must include both. Google hosts versions of both, which you can use in your project by including the following two lines in the `<head>` section of the HTML document:
```html
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<link href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/black-tie/jquery-ui.min.css" rel="stylesheet" type="text/css"></link>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/black-tie/jquery-ui.min.css" rel="stylesheet" type="text/css"></link>
```
This example uses the 'black-tie' theme, but any theme should work.

View File

@ -18,7 +18,7 @@ Start by downloading jsPsych and setting up a folder to contain your experiment
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<link href="jsPsych-4.0/css/jspsych.css" rel="stylesheet" type="text/css"></link>
@ -67,7 +67,7 @@ jsPsych.init({
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<link href="jsPsych-4.0/css/jspsych.css" rel="stylesheet" type="text/css"></link>
@ -129,7 +129,7 @@ experiment.push(instructions_block);
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<link href="jsPsych-4.0/css/jspsych.css" rel="stylesheet" type="text/css"></link>
@ -214,7 +214,7 @@ experiment.push(test_block);
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-single-stim.js"></script>
@ -309,7 +309,7 @@ If you are wondering where to figure out what the various parameter options for
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-single-stim.js"></script>
@ -401,7 +401,7 @@ Now our experiment is 20 trials long, and the trials are shown in a random order
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-single-stim.js"></script>
@ -482,7 +482,7 @@ jsPsych.init({
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-single-stim.js"></script>
@ -592,7 +592,7 @@ var test_block = {
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-single-stim.js"></script>
@ -702,7 +702,7 @@ If you run the experiment, you'll notice that the interval between trials change
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-single-stim.js"></script>
@ -828,7 +828,7 @@ experiment.push(debrief_block);
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-single-stim.js"></script>

View File

@ -52,7 +52,7 @@ To use jsPsych, add a `<script>` tag to import the library. You'll need to impor
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
</head>
<body>
@ -67,7 +67,7 @@ You may also want to import the jsPsych stylesheet, which applies a basic set of
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<link href="jsPsych-4.0/css/jspsych.css" rel="stylesheet" type="text/css"></link>
</head>
@ -85,7 +85,7 @@ For the demo, we want to show some text on the screen. This is exactly what the
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<link href="jsPsych-4.0/css/jspsych.css" rel="stylesheet" type="text/css"></link>
@ -104,7 +104,7 @@ To add JavaScript code directly to the webpage we need to add a set of `<script>
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<link href="jsPsych-4.0/css/jspsych.css" rel="stylesheet" type="text/css"></link>
@ -129,7 +129,7 @@ Now that we have the trial defined, we just need to tell jsPsych to run an exper
<html>
<head>
<title>My experiment</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jsPsych-4.0/jspsych.js"></script>
<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
<link href="jsPsych-4.0/css/jspsych.css" rel="stylesheet" type="text/css"></link>