diff options
| author | Chris Rebert <[email protected]> | 2014-04-19 17:42:06 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-04-19 17:42:06 -0700 |
| commit | a6214273b9f9a7d4858e55ac2c5379f71ab71314 (patch) | |
| tree | f8da907bfd46e2cd0825d3e855cd280292c9b2f7 /docs | |
| parent | 96e2f9332b7d2e6426e0a02dd5bc4ba34941f952 (diff) | |
| download | bootstrap-a6214273b9f9a7d4858e55ac2c5379f71ab71314.tar.xz bootstrap-a6214273b9f9a7d4858e55ac2c5379f71ab71314.zip | |
quote attribute value in selector in JS docs example
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/_includes/js/overview.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/_includes/js/overview.html b/docs/_includes/js/overview.html index abc2a47e5..2ef8fe850 100644 --- a/docs/_includes/js/overview.html +++ b/docs/_includes/js/overview.html @@ -45,7 +45,7 @@ $('#myModal').modal({ keyboard: false }) // initialized with no keyboard $('#myModal').modal('show') // initializes and invokes show immediately {% endhighlight %} - <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> + <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> <h3 id="js-noconflict">No conflict</h3> <p>Sometimes it is necessary to use Bootstrap plugins with other UI frameworks. In these circumstances, namespace collisions can occasionally occur. If this happens, you may call <code>.noConflict</code> on the plugin you wish to revert the value of.</p> |
