Skip to content

Commit 04c1425

Browse files
author
Daniel Bradley
committed
Fix docs site on https
Make JS and CSS includes relative to the current scheme instead of fixing to http which causes some browsers to not load the content.
1 parent 4df70fb commit 04c1425

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/output/content/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import url(http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans+Mono|Gudea:400,700,400italic);
1+
@import url(//fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans+Mono|Gudea:400,700,400italic);
22

33
/*--------------------------------------------------------------------------
44
Formatting for F# code snippets

docs/tools/templates/template.cshtml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
<meta name="description" content="@Description">
88
<meta name="author" content="@Properties["project-author"]">
99

10-
<script src="http://code.jquery.com/jquery-1.8.0.js"></script>
11-
<script src="http://code.jquery.com/ui/1.8.23/jquery-ui.js"></script>
12-
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script>
13-
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet">
10+
<script src="//code.jquery.com/jquery-1.8.0.js"></script>
11+
<script src="//code.jquery.com/ui/1.8.23/jquery-ui.js"></script>
12+
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script>
13+
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet" />
1414

1515
<link type="text/css" rel="stylesheet" href="@Root/content/style.css" />
1616
<script type="text/javascript" src="@Root/content/tips.js"></script>
1717
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
1818
<!--[if lt IE 9]>
19-
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
19+
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
2020
<![endif]-->
2121
</head>
2222
<body>

0 commit comments

Comments
 (0)