Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use jQuery/resources over HTTPS for GitHub pages #9

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

<body>

<a href="http://github.com/bartaz/sandbox.js"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
<a href="https://github.com/bartaz/sandbox.js"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>

<div id="container">
<h1>
<a href="http://github.com/bartaz/sandbox.js">sandbox.js</a>
<span class="small">by <a href="http://github.com/bartaz">bartaz</a></span>
<a href="https://github.com/bartaz/sandbox.js">sandbox.js</a>
<span class="small">by <a href="https://github.com/bartaz">bartaz</a></span>
</h1>

<div class="description">My little place to play with JavaScript</div>
Expand Down Expand Up @@ -43,7 +43,7 @@ <h2>Download</h2>

<div id="copyright">
<p>Copyright &copy; 2009 Bartek Szopka</p>
<p>get the source code on GitHub : <a href="http://github.com/bartaz/sandbox.js">bartaz/sandbox.js</a></p>
<p>get the source code on GitHub : <a href="https://github.com/bartaz/sandbox.js">bartaz/sandbox.js</a></p>
</div>

</div>
Expand Down
2 changes: 1 addition & 1 deletion jquery.highlight.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<link rel="stylesheet" href="style.css" type="text/css" />

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<script type="text/javascript" src="jquery.highlight.js">
</script>
Expand Down
2 changes: 1 addition & 1 deletion string_object_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>jQuery.fn.html(new String("test case")</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript">
//<![CDATA[

Expand Down