diff options
| author | XhmikosR <[email protected]> | 2015-01-26 17:56:25 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2015-01-26 17:58:09 +0200 |
| commit | 9f2589501562b86ddb6c58a1beb3193acca2f4e3 (patch) | |
| tree | f7b1075d3de806c42785e071fcd2d0f57f991af2 /docs/_includes | |
| parent | c015fec3254a8b83e009075e8ab8403c57704ea4 (diff) | |
| download | bootstrap-9f2589501562b86ddb6c58a1beb3193acca2f4e3.tar.xz bootstrap-9f2589501562b86ddb6c58a1beb3193acca2f4e3.zip | |
Fix validation errors.
Surprisingly those weren't reported by the validator; only in the grunt-contrib-htmlmin branch they were reported, so after digging into it, I saw they were indeed errors...
Diffstat (limited to 'docs/_includes')
| -rw-r--r-- | docs/_includes/js/collapse.html | 2 | ||||
| -rw-r--r-- | docs/_includes/js/overview.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/_includes/js/collapse.html b/docs/_includes/js/collapse.html index 85b56d94a..e193098cc 100644 --- a/docs/_includes/js/collapse.html +++ b/docs/_includes/js/collapse.html @@ -221,7 +221,7 @@ $('.collapse').collapse() <h3 id="collapse-methods">Methods</h3> <h4>.collapse(options)</h4> - <p>Activates your content as a collapsible element. Accepts an optional options <code>object</code>. + <p>Activates your content as a collapsible element. Accepts an optional options <code>object</code>.</p> {% highlight js %} $('#myCollapsible').collapse({ toggle: false diff --git a/docs/_includes/js/overview.html b/docs/_includes/js/overview.html index 89030966c..930509c76 100644 --- a/docs/_includes/js/overview.html +++ b/docs/_includes/js/overview.html @@ -48,7 +48,7 @@ $('#myModal').modal('show') // initializes and invokes show immed <p>Each plugin also exposes its raw constructor on a <code>Constructor</code> property: <code>$.fn.popover.Constructor</code>. If you'd like to get a particular plugin instance, retrieve it directly from an element: <code>$('[rel="popover"]').data('popover')</code>.</p> <h4>Default settings</h4> - <p>You can change the default settings for a plugin by modifying the plugin's <code>Constructor.DEFAULTS</code> object:<p> + <p>You can change the default settings for a plugin by modifying the plugin's <code>Constructor.DEFAULTS</code> object:</p> {% highlight js %} $.fn.modal.Constructor.DEFAULTS.keyboard = false // changes default for the modal plugin's `keyboard` option to false {% endhighlight %} |
