aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Oliff <christianoliff@yahoo.com>2019-04-17 16:59:48 +0900
committerGitHub <noreply@github.com>2019-04-17 16:59:48 +0900
commit19835af7b1dc208e4a7f5e9a7630325372a74bed (patch)
treeb6662287a2dfda2f651cc5c2eb5afcef13b1d02e
parent91d6e367e384b0d8aaaf7ce95029514fcdf38651 (diff)
downloadgoogle-styleguide-19835af7b1dc208e4a7f5e9a7630325372a74bed.tar.gz
update jQuery version in example
I know it's only an example, but best to have the most recent version here which doesn't have a known security vulneability.
-rw-r--r--htmlcssguide.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/htmlcssguide.html b/htmlcssguide.html
index 5ac4b93..5fd082e 100644
--- a/htmlcssguide.html
+++ b/htmlcssguide.html
@@ -32,14 +32,14 @@ files, style sheets, and scripts, unless the respective files are not available
over HTTPS.</p>
<pre><code class="language-html prettyprint badcode">&lt;!-- Not recommended: omits the protocol --&gt;
-&lt;script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"&gt;&lt;/script&gt;
+&lt;script src="//ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"&gt;&lt;/script&gt;
&lt;!-- Not recommended: uses HTTP --&gt;
-&lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"&gt;&lt;/script&gt;
+&lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"&gt;&lt;/script&gt;
</code></pre>
<pre><code class="language-html prettyprint">&lt;!-- Recommended --&gt;
-&lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"&gt;&lt;/script&gt;
+&lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"&gt;&lt;/script&gt;
</code></pre>
<pre><code class="language-css prettyprint badcode">/* Not recommended: omits the protocol */