Skip to content

Commit 0451aea

Browse files
committed
add https scheme to all iframe URLs for embedded videos
1 parent 1015345 commit 0451aea

11 files changed

+14
-14
lines changed

content/getting-started/creating-node-modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ featured: true
55

66
# Creating Node.js modules
77

8-
<iframe src="//www.youtube.com/embed/3I78ELjTzlQ" frameborder="0" allowfullscreen></iframe>
8+
<iframe src="https://www.youtube.com/embed/3I78ELjTzlQ" frameborder="0" allowfullscreen></iframe>
99

1010
Node.js modules are one kind of package which can be published to npm. When you create a new module, you want to start with the `package.json` file.
1111

content/getting-started/fixing-npm-permissions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ featured: true
55

66
# Fixing npm permissions
77

8-
<iframe src="//www.youtube.com/embed/bxvybxYFq2o" frameborder="0" allowfullscreen></iframe>
8+
<iframe src="https://www.youtube.com/embed/bxvybxYFq2o" frameborder="0" allowfullscreen></iframe>
99

1010
You may receive an `EACCES` error when you try to install a package globally. This indicates that you do not have permission to write to the directories that npm uses to store global packages and commands.
1111

12-
You can fix this problem using one of two options:
12+
You can fix this problem using one of two options:
1313

1414
1. Change the permission to npm's default directory.
1515
1. Change npm's default directory to another directory.

content/getting-started/installing-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ featured: true
55

66
# Installing Node.js and updating npm
77

8-
<iframe src="//www.youtube.com/embed/wREima9e6vk" frameborder="0" allowfullscreen></iframe>
8+
<iframe src="https://www.youtube.com/embed/wREima9e6vk" frameborder="0" allowfullscreen></iframe>
99

1010
## Installing Node.js
1111

content/getting-started/installing-npm-packages-globally.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ featured: true
55

66
# Installing npm packages globally
77

8-
<iframe src="//www.youtube.com/embed/JXi9pg5fsao" frameborder="0" allowfullscreen></iframe>
8+
<iframe src="https://www.youtube.com/embed/JXi9pg5fsao" frameborder="0" allowfullscreen></iframe>
99

1010
There are two ways to install npm packages: locally or globally. You choose which kind of installation to use based on how you want to use the package.
1111

content/getting-started/installing-npm-packages-locally.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ featured: true
55

66
# Installing npm packages locally
77

8-
<iframe src="//www.youtube.com/embed/JDSfqFFbNYQ" frameborder="0" allowfullscreen></iframe>
8+
<iframe src="https://www.youtube.com/embed/JDSfqFFbNYQ" frameborder="0" allowfullscreen></iframe>
99

1010
There are two ways to install npm packages: locally or globally. You choose which kind of
1111
installation to use based on how you want to use the package.
@@ -19,7 +19,7 @@ To learn more about the `install` command's behavior, check out the [CLI doc pag
1919

2020
## Installing
2121

22-
A package can be downloaded with the command
22+
A package can be downloaded with the command
2323

2424
```
2525
> npm install <package_name>
@@ -37,7 +37,7 @@ on Windows.
3737

3838
#### Example:
3939

40-
Install a package called `lodash`. Confirm that it ran successfully by listing the
40+
Install a package called `lodash`. Confirm that it ran successfully by listing the
4141
contents of the `node_modules` directory and seeing a directory called `lodash`.
4242

4343
```

content/getting-started/publishing-npm-packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ featured: true
55

66
# Publishing npm packages
77

8-
<iframe src="//www.youtube.com/embed/BkotrAFtBM0" frameborder="0" allowfullscreen></iframe>
8+
<iframe src="https://www.youtube.com/embed/BkotrAFtBM0" frameborder="0" allowfullscreen></iframe>
99

1010
You can publish any directory that has a `package.json` file, e.g. a [node module](/getting-started/creating-node-modules).
1111

content/getting-started/semantic-versioning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ featured: true
55

66
# Semantic versioning and npm
77

8-
<iframe src="//www.youtube.com/embed/kK4Meix58R4" frameborder="0" allowfullscreen></iframe>
8+
<iframe src="https://www.youtube.com/embed/kK4Meix58R4" frameborder="0" allowfullscreen></iframe>
99

1010
Semantic versioning is a standard that a lot of projects use to communicate what kinds of changes are in this release. It's important to communicate what kinds of changes are in a release because sometimes those changes will break the code that depends on the package.
1111

content/getting-started/uninstalling-global-packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ featured: true
55

66
# Uninstalling global packages
77

8-
<iframe src="//www.youtube.com/embed/XbvjZxUZJGg" frameborder="0" allowfullscreen></iframe>
8+
<iframe src="https://www.youtube.com/embed/XbvjZxUZJGg" frameborder="0" allowfullscreen></iframe>
99

1010
Global packages can be uninstalled with `npm uninstall -g <package>`:
1111

content/getting-started/uninstalling-local-packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ featured: true
55

66
# Uninstalling local packages
77

8-
<iframe src="//www.youtube.com/embed/Z-BpYj6cSoQ" frameborder="0" allowfullscreen></iframe>
8+
<iframe src="https://www.youtube.com/embed/Z-BpYj6cSoQ" frameborder="0" allowfullscreen></iframe>
99

1010
You can remove a package from your node_modules directory using `npm uninstall <package>`:
1111

content/getting-started/updating-local-packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ featured: true
55

66
# Updating local packages
77

8-
<iframe src="//www.youtube.com/embed/HRudtPGcOt4" frameborder="0" allowfullscreen></iframe>
8+
<iframe src="https://www.youtube.com/embed/HRudtPGcOt4" frameborder="0" allowfullscreen></iframe>
99

1010
Every so often, you should update the packages you depend on so you can get any changes that have been made to code upstream.
1111

0 commit comments

Comments
 (0)