Skip to content

Commit fbe81fb

Browse files
franciscolourencoyyx990803
authored andcommitted
Load external assets with https in select2 example (#3053)
Otherwise it doesn't work if the page is loaded with http.
1 parent 9438408 commit fbe81fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/select2/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<meta charset="utf-8">
55
<title>Vue.js custom directive integration example (select2)</title>
66
<script src="../../dist/vue.js"></script>
7-
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
8-
<link href="http://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/css/select2.min.css" rel="stylesheet">
9-
<script src="http://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/js/select2.min.js"></script>
7+
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
8+
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/css/select2.min.css" rel="stylesheet">
9+
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/js/select2.min.js"></script>
1010
<style>
1111
html, body {
1212
font: 13px/18px sans-serif;

0 commit comments

Comments
 (0)