Skip to content
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
6 changes: 3 additions & 3 deletions fiddle.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1>
Fiddling a Hand</h1>
</div>
</div>
<!-- issues with KO and bootstrap, see http://volaresystems.com/blog/post/2013/12/09/Using-Bootstrap-3-radio-button-groups-with-Knockout-3-data-bindings -->
<!-- issues with KO and bootstrap, see https://volaresystems.com/blog/post/2013/12/09/Using-Bootstrap-3-radio-button-groups-with-Knockout-3-data-bindings -->
<div class="btn-group">
<label class="btn btn-default" data-bind="css: { 'active': layout() === 'fan' }">
<input type="radio" name="options" id="option1" data-bind="checked: layout, checkedValue: 'fan'">Fan
Expand Down Expand Up @@ -129,8 +129,8 @@ <h2>
</div>
</div>

<script type='text/javascript' src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type='text/javascript' src='http://cdnjs.cloudflare.com/ajax/libs/knockout/3.1.0/knockout-min.js'></script>
<script type='text/javascript' src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/knockout/3.1.0/knockout-min.js'></script>
<script src="cards.js" type="text/javascript"></script>
<script src="cards-ko.js" type="text/javascript"></script>
<script type='text/javascript' src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
Expand Down
14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h3>
</p>

<p>
The playing cards are designed by Chris Aguilar in his <a href="http://code.google.com/p/vectorized-playing-cards/">Vectorized Playing Cards</a> project.
The playing cards are designed by Chris Aguilar in his <a href="https://code.google.com/p/vectorized-playing-cards/">Vectorized Playing Cards</a> project.
Each card is a SVG image; this allows scaling and rotation of the card image without the aliasing issues of a bitmap image.
</p>

Expand Down Expand Up @@ -175,10 +175,10 @@ <h3>
<h3>
<a id="A1" class="anchor" href="#support-or-contact" aria-hidden="true"><span class="octicon octicon-link"></span></a>Credits</h3>
<p>
Chris Aguilar for his beautiful <a href="http://code.google.com/p/vectorized-playing-cards/">Vectorized Playing Cards</a>.<br />
David Gouvei for his <a href="http://gamedev.stackexchange.com/questions/22162/how-can-i-evenly-fan-out-a-hand-of-cards">card fan</a>
Chris Aguilar for his beautiful <a href="https://code.google.com/p/vectorized-playing-cards/">Vectorized Playing Cards</a>.<br />
David Gouvei for his <a href="https://gamedev.stackexchange.com/questions/22162/how-can-i-evenly-fan-out-a-hand-of-cards">card fan</a>
algorithm.<br />
<a href="http://github.com">GitHub</a> and <a href="http://pages.github.com">GitHub Pages</a> for making cloud development easy.
<a href="https://github.com">GitHub</a> and <a href="https://pages.github.com">GitHub Pages</a> for making cloud development easy.
</p>
</section>
</div>
Expand All @@ -187,12 +187,12 @@ <h3>
<div id="footer_wrap" class="outer">
<footer class="inner">
<p class="copyright">Cards JS maintained by <a href="https://github.com/richardschneider">Richard Schneider</a></p>
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
</footer>
</div>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="cards.js"></script>
<script type="text/javascript">
function incrementCard(cards, v) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cardsJS",
"description": "Scalable playing cards with various hand layouts.",
"homepage": "http://richardschneider.github.io/cardsJS/",
"homepage": "https://richardschneider.github.io/cardsJS/",
"bugs": "https://github.com/richardschneider/cardsJS/issues",
"license": "MIT",
"main": "cards.js",
Expand Down