Skip to content

Commit

Permalink
remove protocol relative urls
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Besch committed Feb 25, 2016
1 parent b3a4564 commit 4165247
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions examples/amd.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h2>What is this?</h2>

<p class="small">Copyright © 2014 <a href="http://dbushell.com/">David Bushell</a> | BSD &amp; MIT license | Example by <a href="https://github.com/rikkert">Ramiro Rikkert</a></p>

<script src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.js"></script>
<script>

require.config({
Expand All @@ -47,4 +47,4 @@ <h2>What is this?</h2>

</script>
</body>
</html>
</html>
4 changes: 2 additions & 2 deletions examples/jquery-amd.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h2>What is this?</h2>
<p class="small">Copyright © 2014 <a href="http://dbushell.com/">David Bushell</a> | BSD &amp; MIT license | Example by <a href="https://github.com/rikkert">Ramiro Rikkert</a></p>


<script src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.js"></script>
<script>

require.config({
Expand All @@ -51,4 +51,4 @@ <h2>What is this?</h2>

</script>
</body>
</html>
</html>
4 changes: 2 additions & 2 deletions examples/jquery.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h2>What is this?</h2>
<p class="small">Copyright © 2014 <a href="http://dbushell.com/">David Bushell</a> | BSD &amp; MIT license | Example by <a href="https://github.com/rikkert">Ramiro Rikkert</a></p>


<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<!-- First load pikaday.js and then the jQuery plugin -->
<script src="../pikaday.js"></script>
<script src="../plugins/pikaday.jquery.js"></script>
Expand All @@ -43,4 +43,4 @@ <h2>What is this?</h2>

</script>
</body>
</html>
</html>
8 changes: 4 additions & 4 deletions examples/moment.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h2>What is this?</h2>
<p class="small">Copyright © 2014 <a href="http://dbushell.com/">David Bushell</a> | BSD &amp; MIT license | Example by <a href="https://github.com/rikkert">Ramiro Rikkert</a></p>


<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.5.1/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.5.1/moment.min.js"></script>
<script src="../pikaday.js"></script>
<script>

Expand All @@ -45,9 +45,9 @@ <h2>What is this?</h2>
document.getElementById('selected').appendChild(date);
}
});

picker.setMoment(moment().dayOfYear(366));

</script>
</body>
</html>
</html>

0 comments on commit 4165247

Please sign in to comment.