aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/js/overview.html
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2015-01-26 17:56:25 +0200
committerXhmikosR <[email protected]>2015-01-26 17:58:09 +0200
commit9f2589501562b86ddb6c58a1beb3193acca2f4e3 (patch)
treef7b1075d3de806c42785e071fcd2d0f57f991af2 /docs/_includes/js/overview.html
parentc015fec3254a8b83e009075e8ab8403c57704ea4 (diff)
downloadbootstrap-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/js/overview.html')
-rw-r--r--docs/_includes/js/overview.html2
1 files changed, 1 insertions, 1 deletions
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 %}