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

Commit

Permalink
Merge pull request #51 from jdreesen/https
Browse files Browse the repository at this point in the history
Use HTTPS wherever possible
  • Loading branch information
mnapoli committed Oct 4, 2015
2 parents b1f74d6 + acbb28e commit eac8e52
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"confirm"
],
"license": "MIT",
"homepage": "http://myclabs.github.io/jquery.confirm/",
"homepage": "https://myclabs.github.io/jquery.confirm/",
"ignore": [
"**/.*",
"node_modules",
Expand Down
2 changes: 1 addition & 1 deletion couscous.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
baseUrl: http://myclabs.github.io/jquery.confirm/
baseUrl: https://myclabs.github.io/jquery.confirm/

title: jquery.confirm
subTitle: Confirm dialogs for buttons and links
Expand Down
8 changes: 4 additions & 4 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

<title>Demo of jquery.confirm with Bootstrap 3</title>

<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="../jquery.confirm.js"></script>
</head>

Expand All @@ -30,7 +30,7 @@ <h1>Demo</h1>
<tbody>
<tr>
<td>Simple confirmation (link)</td>
<td><a id="simpleConfirm" href="http://myclabs.github.io/jquery.confirm/" class="btn btn-primary">Click me</a></td>
<td><a id="simpleConfirm" href="https://myclabs.github.io/jquery.confirm/" class="btn btn-primary">Click me</a></td>
<td>
<pre>&lt;a id="simpleConfirm" href="" class="btn btn-primary"&gt;Click me&lt;/a&gt;</pre>

Expand Down Expand Up @@ -120,7 +120,7 @@ <h1>Demo</h1>

</div>

<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>

</body>
Expand Down
2 changes: 1 addition & 1 deletion jquery.confirm.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @author Marcus Schwarz <[email protected]>
*
* @license MIT
* @url http://myclabs.github.io/jquery.confirm/
* @url https://myclabs.github.io/jquery.confirm/
*/
(function ($) {

Expand Down
2 changes: 1 addition & 1 deletion jquery.confirm.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions website/default.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<link rel="stylesheet" href="{{ baseUrl }}/css/highlight.dark.css">
<link rel="stylesheet" href="{{ baseUrl }}/css/main.css">

<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="jquery.confirm.min.js"></script>
</head>
<body>
Expand Down Expand Up @@ -100,8 +100,8 @@
</section>
</main>

<script src="//netdna.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src="http://yastatic.net/highlightjs/8.2/highlight.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src="https://yastatic.net/highlightjs/8.2/highlight.min.js"></script>

<script>
$(function() {
Expand Down

0 comments on commit eac8e52

Please sign in to comment.