Skip to content

Commit 62b7c8e

Browse files
committed
demos: fixed demo descriptions to use CODE for option names instead of STRONG
1 parent ca2f019 commit 62b7c8e

45 files changed

Lines changed: 48 additions & 48 deletions

Some content is hidden

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

demos/accordion/collapsible.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ <h3><a href="#">Section 4</a></h3>
5858

5959
<div class="demo-description">
6060

61-
<p>By default, accordions always keep one section open. To allow for all sections to be be collapsible, set the <strong>alwaysOpen</strong> option to false. Click on the currently open section to collapse its content pane.</p>
61+
<p>By default, accordions always keep one section open. To allow for all sections to be be collapsible, set the <code>alwaysOpen</code> option to false. Click on the currently open section to collapse its content pane.</p>
6262

6363

6464
</div><!-- End demo-description -->

demos/accordion/custom-icons.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ <h3><a href="#">Section 4</a></h3>
6161

6262
<div class="demo-description">
6363

64-
<p>Customize the header icons with the <strong>icons</strong> option, which accepts classes for the header's default and selected (open) state. Use any class from the UI CSS framework, or create custom classes with background images.</p>
64+
<p>Customize the header icons with the <code>icons</code> option, which accepts classes for the header's default and selected (open) state. Use any class from the UI CSS framework, or create custom classes with background images.</p>
6565

6666
</div><!-- End demo-description -->
6767

demos/accordion/fillspace.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ <h3><a href="#">Section 4</a></h3>
7676

7777
<div class="demo-description">
7878

79-
<p>Because the accordion is comprised of block-level elements, by default its width fills the available horizontal space. To fill the vertical space allocated by its container, set the boolean <strong>fillSpace</strong> option to true, and the script will automatically set the dimensions of the accordion to the height of its parent container. The accordion will also resize with its container if the container is <strong>resizable</strong>.</p>
79+
<p>Because the accordion is comprised of block-level elements, by default its width fills the available horizontal space. To fill the vertical space allocated by its container, set the boolean <code>fillSpace</code> option to true, and the script will automatically set the dimensions of the accordion to the height of its parent container. The accordion will also resize with its container if the container is <code>resizable</code>.</p>
8080

8181
</div><!-- End demo-description -->
8282

demos/accordion/mouseover.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ <h3><a href="#">Section 4</a></h3>
5858

5959
<div class="demo-description">
6060

61-
<p>Toggle sections open/closed on mouseover with the <strong>event</strong> option. The default value for event is "click."</p>
61+
<p>Toggle sections open/closed on mouseover with the <code>event</code> option. The default value for event is "click."</p>
6262

6363
</div><!-- End demo-description -->
6464

demos/datepicker/alt-field.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<div class="demo-description">
2525

26-
<p>Populate an alternate field with its own date format whenever a date is selected using the <strong>altField</strong> and <strong>altFormat</strong> options. This feature could be used to present a human-friendly date for user selection, while passing a more computer-friendly date through for further processing.</p>
26+
<p>Populate an alternate field with its own date format whenever a date is selected using the <code>altField</code> and <code>altFormat</code> options. This feature could be used to present a human-friendly date for user selection, while passing a more computer-friendly date through for further processing.</p>
2727

2828
</div><!-- End demo-description -->
2929

demos/datepicker/buttonbar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<div class="demo-description">
2727

28-
<p>Display a button for selecting Today's date and a Done button for closing the calendar with the boolean <strong>showButtonPanel</strong> option. Each button is enabled by default when the bar is displayed, but can be turned off with additional options. Button text is customizable.</p>
28+
<p>Display a button for selecting Today's date and a Done button for closing the calendar with the boolean <code>showButtonPanel</code> option. Each button is enabled by default when the bar is displayed, but can be turned off with additional options. Button text is customizable.</p>
2929

3030
</div><!-- End demo-description -->
3131

demos/datepicker/dropdown-month-year.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<div class="demo-description">
2828

29-
<p>Show month and year dropdowns in place of the static month/year header to facilitate navigation through large timeframes. Add the boolean <strong>changeMonth</strong> and <strong>changeYear</strong> options.</p>
29+
<p>Show month and year dropdowns in place of the static month/year header to facilitate navigation through large timeframes. Add the boolean <code>changeMonth</code> and <code>changeYear</code> options.</p>
3030

3131
</div><!-- End demo-description -->
3232

demos/datepicker/min-max.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<div class="demo-description">
2525

26-
<p>Restrict the range of selectable dates with the <strong>minDate</strong> and <strong>maxDate</strong> options. Set the beginning and end dates as actual dates (new Date(2009, 1 - 1, 26)), as a numeric offset from today (-20), or as a string of periods and units ('+1M +10D'). For the last, use 'D' for days, 'W' for weeks, 'M' for months, or 'Y' for years.</p>
26+
<p>Restrict the range of selectable dates with the <code>minDate</code> and <code>maxDate</code> options. Set the beginning and end dates as actual dates (new Date(2009, 1 - 1, 26)), as a numeric offset from today (-20), or as a string of periods and units ('+1M +10D'). For the last, use 'D' for days, 'W' for weeks, 'M' for months, or 'Y' for years.</p>
2727

2828
</div><!-- End demo-description -->
2929

demos/datepicker/multiple-calendars.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<div class="demo-description">
2828

29-
<p>Set the <strong>numberOfMonths</strong> option to an integer of 2 or more to show multiple months in a single datepicker.</p>
29+
<p>Set the <code>numberOfMonths</code> option to an integer of 2 or more to show multiple months in a single datepicker.</p>
3030

3131
</div><!-- End demo-description -->
3232

demos/demos.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ eventually we should convert the font sizes to ems -- using px for now to minimi
167167
}
168168

169169
#demo-notes { width:520px; color:#333; font-size: 1em; }
170-
.demo-description p code { padding: 0; font-weight: bold; }
170+
#demo-notes p code, .demo-description p code { padding: 0; font-weight: bold; }
171171
#demo-source pre, #demo-source code { padding: 0; }
172172
code, pre { padding:8px 0 8px 20px ; font-size: 1.2em; line-height:130%; }
173173

0 commit comments

Comments
 (0)