Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit 8dbf787

Browse files
committed
Docs: corrected double quote issues for button options (docs/buttons/buttons-options.html)
1 parent 75b4aea commit 8dbf787

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/buttons/buttons-options.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,32 +66,32 @@ <h2>Button basics</h2>
6666
<dd>
6767
<p class="default">default: true</p>
6868
<p>Applies the theme shadow to the button's icon if set to true. This option is also exposed as a data attribute: <code>data-iconshadow=&quot;false&quot;</code></p>
69-
<pre><code>$('a').buttonMarkup(<strong>{ iconshadow: "false" }</strong>);</code></pre>
69+
<pre><code>$('a').buttonMarkup(<strong>{ iconshadow: false }</strong>);</code></pre>
7070
<a href="#" data-role="button" data-icon="star" data-iconshadow="false">No icon shadow</a>
7171
</dd>
7272

7373
<dt><code>inline</code> <em>boolean</em></dt>
7474
<dd>
7575
<p class="default">default: null (false)</p>
7676
<p>If set to true, this will make the button act like an inline button so the width is determined by the button's text. By default, this is null (false) so the button is full width, regardless of the feedback content. Possible values: true, false. This option is also exposed as a data attribute: <code>data-inline=&quot;true&quot;</code></p>
77-
<pre><code>$('a').buttonMarkup(<strong>{ inline: "true" }</strong>);</code></pre>
77+
<pre><code>$('a').buttonMarkup(<strong>{ inline: true }</strong>);</code></pre>
7878
<a href="#" data-role="button" data-inline="true">Inline</a>
7979
</dd>
8080

8181
<dt><code>mini</code> <em>boolean</em></dt>
8282
<dd>
8383
<p class="default">default: null (false)</p>
8484
<p>If set to true, this will display a more compact version of the button that uses less vertical height. Possible values: true, false. This option is also exposed as a data attribute: <code>data-mini=&quot;true&quot;</code></p>
85-
<pre><code>$('a').buttonMarkup(<strong>{ mini: "true" }</strong>);</code></pre>
85+
<pre><code>$('a').buttonMarkup(<strong>{ mini: true }</strong>);</code></pre>
8686
<a href="#" data-role="button" data-mini="true">Mini</a>
8787
</dd>
8888

8989
<dt><code>shadow</code> <em>boolean</em></dt>
9090
<dd>
9191
<p class="default">default: true</p>
9292
<p>Applies the drop shadow style to the button if set to true. This option is also exposed as a data attribute: <code>data-shadow=&quot;false&quot;</code></p>
93-
<pre><code>$('a').buttonMarkup(<strong>{ shadow: "false" }</strong>);</code></pre>
94-
<a href="#" data-role="button" data-shadow="false">No button shadow</a>
93+
<pre><code>$('a').buttonMarkup(<strong>{ shadow: false }</strong>);</code></pre>
94+
<a href="#" data-role="button" data-shadow=""false">No button shadow</a>
9595
</dd>
9696

9797
<dt><code>theme</code> <em>string</em></dt>

0 commit comments

Comments
 (0)