Skip to content

Commit

Permalink
Merge pull request #266 from twitter/add_tls_to_urls
Browse files Browse the repository at this point in the history
Use https instead of http in urls
  • Loading branch information
alanbato authored Jun 7, 2019
2 parents 7e340e9 + 858c990 commit 124a59e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lib/hogan.js",
"lib/template.js"
]
, "homepage": "http://twitter.github.com/hogan.js/"
, "homepage": "https://twitter.github.com/hogan.js/"
, "author": "Twitter Inc."
, "repository": {
"type": "git"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
, "version": "3.0.2"
, "keywords": ["mustache", "template"]
, "main": "./lib/hogan.js"
, "homepage": "http://twitter.github.com/hogan.js/"
, "homepage": "https://twitter.github.com/hogan.js/"
, "author": "Twitter Inc."
, "repository": {
"type": "git"
Expand Down
6 changes: 3 additions & 3 deletions web/index.html.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<title>Hogan.js</title>
<meta name="description" content="">
<meta name="author" content="">
<script src="http://twitter.github.io/hogan.js/builds/{{version}}/hogan-{{version}}.js"></script>
<script src="https://twitter.github.io/hogan.js/builds/{{version}}/hogan-{{version}}.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<!-- Mobile Specific Metas
Expand Down Expand Up @@ -58,7 +58,7 @@
<p>
Alternatively, drop hogan.js in your browser by adding the following script.
</p>
<pre><code>&lt;script src="http://twitter.github.com/hogan.js/builds/{{version}}/hogan-{{version}}.js"&gt;&lt;/script&gt;</code></pre>
<pre><code>&lt;script src="https://twitter.github.com/hogan.js/builds/{{version}}/hogan-{{version}}.js"&gt;&lt;/script&gt;</code></pre>

</div>
<div class="ten columns offset-by-one">
Expand Down

0 comments on commit 124a59e

Please sign in to comment.