Skip to content
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.

fixes #54: use protocol-relative URLs for fartscroll.js #55

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
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 @@ -31,7 +31,7 @@ <h2>You want fart noises as you scroll? We've got you covered.</h2>

<section id="downloads" class="clearfix">
<a href="https://github.com/theonion/fartscroll.js/zipball/master" id="download-zip" class="button"><span>Download .zip</span></a>
<a href="javascript:%20(function%20()%20{%20%20%20%20%20var%20fs%20=%20document.createElement('script');%20%20%20%20%20fs.setAttribute('src',%20'http://code.onion.com/fartscroll.js');%20%20%20%20%20document.head.appendChild(fs);%20%20%20%20%20window.setTimeout(function(){%20%20%20%20%20%20%20%20%20fartscroll(800);%20%20%20%20%20%20%20%20%20},%20500);%20}());" title="Drag me to your browser toolbar!" id="bookmarklet" class="button"><span>Bookmarklet</span></a>
<a href="javascript:%20(function%20()%20{%20%20%20%20%20var%20fs%20=%20document.createElement('script');%20%20%20%20%20fs.setAttribute('src',%20'//code.onion.com/fartscroll.js');%20%20%20%20%20document.head.appendChild(fs);%20%20%20%20%20window.setTimeout(function(){%20%20%20%20%20%20%20%20%20fartscroll(800);%20%20%20%20%20%20%20%20%20},%20500);%20}());" title="Drag me to your browser toolbar!" id="bookmarklet" class="button"><span>Bookmarklet</span></a>
<a href="https://github.com/theonion/fartscroll.js" id="view-on-github" class="button"><span>View on GitHub</span></a>
</section>

Expand All @@ -45,7 +45,7 @@ <h1>fartscroll.js</h1>
<ol>
<li>
<p>Include "fartscroll.js" in your page. You can include the latest version straight from our CDN:</p>
<pre>&lt;script src="http://code.onion.com/fartscroll.js"&gt;&lt;/script&gt;</pre>
<pre>&lt;script src="//code.onion.com/fartscroll.js"&gt;&lt;/script&gt;</pre>
</li>
<li>
<p>Initialize the fartscroll plugin after the page has loaded:</p>
Expand Down Expand Up @@ -80,7 +80,7 @@ <h1>fartscroll.js</h1>
</ol>
<h2>Other ways to experience fartscroll.js:</h2>
<ul>
<li>As a <a href="javascript:%20(function%20()%20{%20%20%20%20%20var%20fs%20=%20document.createElement('script');%20%20%20%20%20fs.setAttribute('src',%20'http://code.onion.com/fartscroll.js');%20%20%20%20%20document.head.appendChild(fs);%20%20%20%20%20window.setTimeout(function(){%20%20%20%20%20%20%20%20%20fartscroll(800);%20%20%20%20%20%20%20%20%20},%20500);%20}());" title="Drag me to your browser toolbar!">bookmarklet</a>.
<li>As a <a href="javascript:%20(function%20()%20{%20%20%20%20%20var%20fs%20=%20document.createElement('script');%20%20%20%20%20fs.setAttribute('src',%20'//code.onion.com/fartscroll.js');%20%20%20%20%20document.head.appendChild(fs);%20%20%20%20%20window.setTimeout(function(){%20%20%20%20%20%20%20%20%20fartscroll(800);%20%20%20%20%20%20%20%20%20},%20500);%20}());" title="Drag me to your browser toolbar!">bookmarklet</a>.
</li>
<li>As a <a href="http://labs.pgib.me/fartscroll.html">Safari extension</a>.</li>
<li>As a <a href="https://chrome.google.com/webstore/detail/artscroll/aleccjpdgapbpljpcepdlgjegkfkofhj">Chrome Extension</a>.</li>
Expand All @@ -101,7 +101,7 @@ <h2>Other ways to experience fartscroll.js:</h2>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://code.onion.com/fartscroll.js"></script>
<script src="//code.onion.com/fartscroll.js"></script>
<script>
fartscroll(400);
$(document).ready(function() {
Expand Down