Skip to content

Commit

Permalink
[ThirdParty.rst] use https
Browse files Browse the repository at this point in the history
  • Loading branch information
pkra committed May 30, 2016
1 parent c226b6e commit 2ce1dd8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions options/ThirdParty.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ configuration file, for example,
.. code-block:: javascript
<script type="text/x-mathjax-config">
MathJax.Ajax.config.path["Extra"] = "http://my.extra.com/mathjax/extra";
MathJax.Ajax.config.path["Extra"] = "https://my.extra.com/mathjax/extra";
</script>
or equivalently,
Expand All @@ -31,7 +31,7 @@ or equivalently,
<script type="text/javascript">
window.MathJax = {
AuthorInit: function () {
MathJax.Ajax.config.path["Extra"] = "http://my.extra.com/mathjax/extra";
MathJax.Ajax.config.path["Extra"] = "https://my.extra.com/mathjax/extra";
}
};
</script>
Expand Down Expand Up @@ -71,7 +71,7 @@ To add your extension, please follow the guidelines of the repository. To add th
.. code-block:: javascript
<script type="text/x-mathjax-config">
MathJax.Ajax.config.path["Contrib"] = "//cdn.mathjax.org/mathjax/contrib";
MathJax.Ajax.config.path["Contrib"] = "https://cdn.mathjax.org/mathjax/contrib";
</script>
or equivalently,
Expand All @@ -81,7 +81,7 @@ or equivalently,
<script type="text/javascript">
window.MathJax = {
AuthorInit: function () {
MathJax.Ajax.config.path["Contrib"] = "//cdn.mathjax.org/mathjax/contrib";
MathJax.Ajax.config.path["Contrib"] = "https://cdn.mathjax.org/mathjax/contrib";
}
};
</script>

0 comments on commit 2ce1dd8

Please sign in to comment.