Skip to content

Commit 0672e0d

Browse files
author
Reini Urban
committed
Merge pull request #189 from carbin/brought-to-you-by-the-letter-s
avoid mixed-content issues in the profiler output
2 parents 5107793 + 390f7fa commit 0672e0d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/vm/moar/profiler/template.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<title>MoarVM Profiler Results</title>
8-
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
9-
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
8+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
9+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
1010
<style>
1111
body {
1212
min-height: 500px;
@@ -677,9 +677,9 @@ <h3>Global Deoptimization</h3>
677677
</div>
678678
</div>
679679

680-
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
681-
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
682-
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.21/angular.min.js"></script>
680+
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
681+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
682+
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.21/angular.min.js"></script>
683683
<script>
684684
var rawData = JSON.parse('{{{PROFIELR_OUTPUT}}}');
685685

0 commit comments

Comments
 (0)