Skip to content

Commit 3ee01ed

Browse files
committed
fix(index.html): the site breaks over https
Issue: ![a](https://www.dropbox.com/s/03i401vjv31zb3e/Screenshot%202015-05-07%2017.18.23.png?dl=1) Fix: https should always be used if the content is available over secure protocol.
1 parent b9d978e commit 3ee01ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ <h1>Image Zoom</h1>
5252
</p>
5353

5454
</div>
55-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
56-
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
55+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
56+
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
5757
<script src="js/zoom.js"></script>
5858
</body>
5959
</html>

0 commit comments

Comments
 (0)