aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Ruscoe <tonyruscoe@gmail.com>2019-04-17 11:50:04 +0100
committerGitHub <noreply@github.com>2019-04-17 11:50:04 +0100
commit00f3e845857e9ac4fd1311b636600f176ae8cfbb (patch)
treeb6662287a2dfda2f651cc5c2eb5afcef13b1d02e
parent91d6e367e384b0d8aaaf7ce95029514fcdf38651 (diff)
parent19835af7b1dc208e4a7f5e9a7630325372a74bed (diff)
downloadgoogle-styleguide-00f3e845857e9ac4fd1311b636600f176ae8cfbb.tar.gz
Merge pull request #448 from coliff/patch-1
update jQuery version in example
-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 */