Skip to content

Commit 587fd7c

Browse files
committed
Use the https version of the test resources.
1 parent 68aa5d3 commit 587fd7c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

test/index.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<!--
33
/*
4-
* JavaScript Templates Test 2.4.1
4+
* JavaScript Templates Test 2.5.0
55
* https://github.com/blueimp/JavaScript-Templates
66
*
77
* Copyright 2011, Sebastian Tschan
@@ -19,19 +19,21 @@
1919
<meta charset="utf-8">
2020
<title>JavaScript Templates Test</title>
2121
<meta name="viewport" content="width=device-width, initial-scale=1.0">
22-
<link rel="stylesheet" href="http://blueimp.github.io/cdn/css/mocha.min.css">
22+
<link rel="stylesheet" href="https://blueimp.github.io/cdn/css/mocha.min.css">
2323
</head>
2424
<body>
2525
<div id="mocha"></div>
26-
<script src="http://blueimp.github.io/cdn/js/mocha.min.js"></script>
27-
<script src="http://blueimp.github.io/cdn/js/expect.min.js"></script>
26+
<script src="https://blueimp.github.io/cdn/js/mocha.min.js"></script>
27+
<script src="https://blueimp.github.io/cdn/js/expect.min.js"></script>
2828
<script>
29+
/* global mocha */
2930
mocha.setup('bdd');
3031
</script>
3132
<script type="text/x-tmpl" id="template">{%=o.value%}</script>
3233
<script src="../js/tmpl.js"></script>
3334
<script src="test.js"></script>
3435
<script>
36+
/* global window, mocha */
3537
if (!window.PHANTOMJS) {
3638
mocha.checkLeaks();
3739
mocha.run();

0 commit comments

Comments
 (0)