Skip to content

Commit 8b05538

Browse files
All Pages: Change 'Javascript' to 'JavaScript' (pull #3306)
Standardize case of 'JavaScript' across content and templates. --------- Co-authored-by: Howard Edwards <[email protected]>
1 parent 05db56c commit 8b05538

File tree

61 files changed

+84
-84
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+84
-84
lines changed

content-templates/Depricated-MultipleImplementationExample-Template.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,15 +243,15 @@ <h2 id="rps_label">Role, Property, State, and Tabindex Attributes</h2>
243243
</section>
244244

245245
<section>
246-
<h2>Javascript and CSS Source Code</h2>
246+
<h2>JavaScript and CSS Source Code</h2>
247247
<!-- After the js and css files are named with the name of this example, change the href and text of the following 2 links to refer to the appropriate js and css files. -->
248248
<ul>
249249
<li>
250250
CSS:
251251
<a href="css/example_name.css" type="tex/css">example_name.css</a>
252252
</li>
253253
<li>
254-
Javascript:
254+
JavaScript:
255255
<a href="js/example_name.js" type="text/javascript">example_name.js</a>
256256
</li>
257257
</ul>

content-templates/Example-Template.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ <h2 id="ex_label">Example</h2>
8686
<script type="text/javascript">
8787
/* eslint-disable */
8888

89-
// Javascript relevant to example
89+
// JavaScript relevant to example
9090
var i;
9191
var str = 'text';
9292
for (i = 0; i < str.length; i++) {
@@ -196,15 +196,15 @@ <h2 id="rps_label">Role, Property, State, and Tabindex Attributes</h2>
196196
</section>
197197

198198
<section>
199-
<h2>Javascript and CSS Source Code</h2>
199+
<h2>JavaScript and CSS Source Code</h2>
200200
<!-- After the js and css files are named with the name of this example, change the href and text of the following 2 links to refer to the appropriate js and css files. -->
201201
<ul id="css_js_files">
202202
<li>
203203
CSS:
204204
<a href="css/example_name.css" type="text/css">example_name.css</a>
205205
</li>
206206
<li>
207-
Javascript:
207+
JavaScript:
208208
<a href="js/example_name.js" type="text/javascript">example_name.js</a>
209209
</li>
210210
</ul>

content/about/change-history/change-history.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ <h1>Change History</h1>
4343
<li>Improved support for high contrast settings and added detailed documentation of high contrast support in many examples.</li>
4444
<li>Improved support for touch-based screen readers in several examples, most notably in sliders.</li>
4545
<li>Due to change in ARIA 1.2, removed Math role from list of roles that have presentational children.</li>
46-
<li>Developed a <a href="https://github.com/w3c/aria-practices/wiki/Code-Guide#apg-coding-standards">comprehensive set of coding standards for HTML, CSS, and Javascript</a> for the APG and updated a significant portion of content to conform with the standards.</li>
46+
<li>Developed a <a href="https://github.com/w3c/aria-practices/wiki/Code-Guide#apg-coding-standards">comprehensive set of coding standards for HTML, CSS, and JavaScript</a> for the APG and updated a significant portion of content to conform with the standards.</li>
4747
<li>In response to feedback, fixed many documentation errors and functional bugs in examples.</li>
4848
</ul>
4949
<p>Comprehensive lists of closed issues included in APG 1.2 release 1 are tracked in the following GitHub milestones.</p>

content/about/coverage-and-quality/coverage-and-quality-report.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1344,9 +1344,9 @@ <h3 id="example_coding_practices">Coding Practices</h3>
13441344
<th>Uses <code>event.which</code></th>
13451345
<th>High Contrast Documentation</th>
13461346
<th>Example Code ID</th>
1347-
<th>Roles in Javascript and HTML</th>
1347+
<th>Roles in JavaScript and HTML</th>
13481348
<th>Roles in Documentation</th>
1349-
<th>aria-* Attributes in Javascript and HTML</th>
1349+
<th>aria-* Attributes in JavaScript and HTML</th>
13501350
<th>aria-* Attributes in Documentation</th>
13511351
<th>Differences between the documentation and the source code.</th>
13521352
</tr>

content/patterns/alert/examples/alert.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ <h2>JavaScript and CSS Source Code</h2>
140140
<a href="css/alert.css" type="tex/css">alert.css</a>
141141
</li>
142142
<li>
143-
Javascript:
143+
JavaScript:
144144
<a href="js/alert.js" type="text/javascript">alert.js</a>
145145
</li>
146146
</ul>

content/patterns/alertdialog/examples/alertdialog.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,10 +226,10 @@ <h3>Notes on <code>aria-modal</code> and <code>aria-hidden</code></h3>
226226
</section>
227227

228228
<section>
229-
<h2 id="src_label">Javascript and CSS Source Code</h2>
229+
<h2 id="src_label">JavaScript and CSS Source Code</h2>
230230
<ul id="css_js_files">
231231
<li>CSS: <a href="css/alertdialog.css" type="text/css">alertdialog.css</a></li>
232-
<li>Javascript: <a href="js/alertdialog.js" type="text/javascript">alertdialog.js</a>, <a href="../../../shared/js/utils.js">utils.js</a></li>
232+
<li>JavaScript: <a href="js/alertdialog.js" type="text/javascript">alertdialog.js</a>, <a href="../../../shared/js/utils.js">utils.js</a></li>
233233
</ul>
234234
</section>
235235

content/patterns/button/examples/button.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ <h2>JavaScript and CSS Source Code</h2>
202202
<a href="css/button.css" type="text/css">button.css</a>
203203
</li>
204204
<li>
205-
Javascript:
205+
JavaScript:
206206
<a href="js/button.js" type="text/javascript">button.js</a>
207207
</li>
208208
</ul>

content/patterns/button/examples/button_idl.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ <h2>JavaScript and CSS Source Code</h2>
193193
<a href="css/button.css" type="text/css">button.css</a>
194194
</li>
195195
<li>
196-
Javascript:
196+
JavaScript:
197197
<a href="js/button_idl.js" type="text/javascript">button_idl.js</a>
198198
</li>
199199
</ul>

content/patterns/carousel/examples/carousel-1-prev-next.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ <h2 id="rps_label">Role, Property, State, and Tabindex Attributes</h2>
520520
<h2>JavaScript and CSS Source Code</h2>
521521
<ul id="css_js_files">
522522
<li>CSS: <a href="css/carousel-prev-next.css" type="text/css">carousel-prev-next.css</a></li>
523-
<li>Javascript: <a href="js/carousel-prev-next.js" type="text/javascript">carousel-prev-next.js</a></li>
523+
<li>JavaScript: <a href="js/carousel-prev-next.js" type="text/javascript">carousel-prev-next.js</a></li>
524524
</ul>
525525
</section>
526526

content/patterns/carousel/examples/carousel-2-tablist.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ <h3 id="rps_label_2">Tabs</h3>
706706
<h2>JavaScript and CSS Source Code</h2>
707707
<ul id="css_js_files">
708708
<li>CSS: <a href="css/carousel-tablist.css" type="text/css">carousel-tablist.css</a></li>
709-
<li>Javascript: <a href="js/carousel-tablist.js" type="text/javascript">carousel-tablist.js</a></li>
709+
<li>JavaScript: <a href="js/carousel-tablist.js" type="text/javascript">carousel-tablist.js</a></li>
710710
</ul>
711711
</section>
712712

0 commit comments

Comments
 (0)