Skip to content

Commit

Permalink
http -> https. Thanks @mathiasbynens.
Browse files Browse the repository at this point in the history
  • Loading branch information
sideshowbarker committed Aug 11, 2015
1 parent 2846b54 commit 52fb172
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h2 id="contributing">How to contribute annotations</h2>
<li>If you don’t have one already, create a
<a href="https://github.com/signup/free">GitHub user account</a>.</li>
<li>Use the GitHub Web UI to
<a href="http://github.com/es5/es5.github.io#fork_box"
<a href="https://github.com/es5/es5.github.io#fork_box"
>create your own fork of the es5-spec git repository</a>
and check it out to make a local es5-spec workspace.</li>
<li>Create the annotation in your workspace, using the next two
Expand All @@ -46,7 +46,7 @@ <h2 id="contributing">How to contribute annotations</h2>
to your local git repository, then push it to your GitHub
es5-spec fork.</li>
<li>Send a
<a href="http://github.com/es5/es5.github.io/pulls">GitHub es5-spec pull request</a>
<a href="https://github.com/es5/es5.github.io/pulls">GitHub es5-spec pull request</a>
so that your change can be committed into the upstream source.</li>
</ol>

Expand All @@ -59,7 +59,7 @@ <h2>Important</h2>
assisting in its implementation.</p>

<div id="stamp">
<p><img id="mascot" src="http://es5.github.io/js-mascot.svg"
<p><img id="mascot" src="https://es5.github.io/js-mascot.svg"
alt=""></p>
<p id="slogan">Ex igne vita.</p>
</div>
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ committed into the upstream source.

[1]: https://github.com/signup/free

[2]: http://github.com/es5/es5.github.io#fork_box
[2]: https://github.com/es5/es5.github.io#fork_box

[3]: http://github.com/es5/es5.github.io/pulls
[3]: https://github.com/es5/es5.github.io/pulls

## Important

Expand All @@ -51,7 +51,7 @@ implementation.

![][4]

[4]: http://es5.github.io/js-mascot.svg
[4]: https://es5.github.io/js-mascot.svg

Ex igne vita.

2 changes: 1 addition & 1 deletion key.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h3 id="key">Key to the markers</h3>
copied, modified, republished, redistributed, etc., as permitted
by that license. If you’d like to contribute annotations, see
the
<a href="http://github.com/es5/es5.github.io/#readme">instructions on the Annotated ES5 project page</a>.</dd>
<a href="https://github.com/es5/es5.github.io/#readme">instructions on the Annotated ES5 project page</a>.</dd>

<dt><b></b> bugs.ecmascript.org issues</dt>
<dd>Direct hyperlinks to <a href="https://bugs.ecmascript.org/">bugs.ecmascript.org</a> issues.</dd>
Expand Down
2 changes: 1 addition & 1 deletion timestamp.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function addTimestamp() {
var link = document.createElement("A"),
d = new Date(document.lastModified);
// script.src = "http://github.com/api/v2/json/repos/show/es5/es5.github.io?callback=jsonp";
// script.src = "https://github.com/api/v2/json/repos/show/es5/es5.github.io?callback=jsonp";
link.href = "https://github.com/es5/es5.github.io/commits/";
document.getElementById("timestamp").appendChild(link);
link.textContent = "Last\u00A0updated:\u00A0" + d.toISOString().substring(0, 10);
Expand Down

2 comments on commit 52fb172

@mathiasbynens
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

You may want to update it here as well:

image

@sideshowbarker
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oof, yep—just changed that now too. Thanks again

Please sign in to comment.