Skip to content

Commit 483a967

Browse files
committed
Entries: Use https for external resource to prevent mixed content blocking
1 parent 3807cd8 commit 483a967

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

entries2html.xsl

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
<head>
1010
<meta charset="utf-8">
1111
&lt;title&gt;<xsl:value-of select="desc"/>&lt;/title&gt;
12-
&lt;link rel=&quot;stylesheet&quot; href=&quot;http://jqueryvalidation.org/files/demo/site-demos.css&quot;&gt;
12+
&lt;link rel=&quot;stylesheet&quot; href=&quot;https://jqueryvalidation.org/files/demo/site-demos.css&quot;&gt;
1313
<xsl:if test="css">&lt;style&gt;<xsl:copy-of select="css/text()"/> &lt;/style&gt;</xsl:if>
1414
&lt;/head&gt;
1515
&lt;body&gt;
1616
&lt;form id=&quot;myform&quot;&gt;<xsl:copy-of select="html/text()"/>&lt;/form&gt;
17-
&lt;script src="http://code.jquery.com/jquery-1.11.1.min.js"&gt;&lt;/script&gt;
18-
&lt;script src="http://cdn.jsdelivr.net/jquery.validation/1.15.0/jquery.validate.min.js"&gt;&lt;/script&gt;
19-
&lt;script src="http://cdn.jsdelivr.net/jquery.validation/1.15.0/additional-methods.min.js"&gt;&lt;/script&gt;
17+
&lt;script src="https://code.jquery.com/jquery-1.11.1.min.js"&gt;&lt;/script&gt;
18+
&lt;script src="https://cdn.jsdelivr.net/jquery.validation/1.15.0/jquery.validate.min.js"&gt;&lt;/script&gt;
19+
&lt;script src="https://cdn.jsdelivr.net/jquery.validation/1.15.0/additional-methods.min.js"&gt;&lt;/script&gt;
2020
&lt;script&gt;
2121
// just for the demos, avoids form submit
2222
jQuery.validator.setDefaults({

0 commit comments

Comments
 (0)