diff options
| author | Chris Rebert <[email protected]> | 2015-05-04 12:28:41 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-05-04 12:28:41 -0700 |
| commit | a19441dd643c17baf7672987430c4607cfa229e9 (patch) | |
| tree | 535f6fc9ffdd6fffa7db8f1c9322253546481b03 /docs | |
| parent | 9d96cb95b687b061c0c7c660650561ef5d0e421e (diff) | |
| parent | 85235c55acffd1f3f2d2cdd0414828b21aa070b7 (diff) | |
| download | bootstrap-a19441dd643c17baf7672987430c4607cfa229e9.tar.xz bootstrap-a19441dd643c17baf7672987430c4607cfa229e9.zip | |
Merge pull request #16409 from twbs/fix-16361
Document Affix plugin's `checkPosition` method
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/_includes/js/affix.html | 13 | ||||
| -rw-r--r-- | docs/_includes/nav/javascript.html | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/docs/_includes/js/affix.html b/docs/_includes/js/affix.html index c94efc03f..bdd896b82 100644 --- a/docs/_includes/js/affix.html +++ b/docs/_includes/js/affix.html @@ -74,6 +74,19 @@ $('#myAffix').affix({ </table> </div><!-- /.table-responsive --> + <h3 id="affix-methods">Methods</h3> + + <h4><code>.affix(options)</code></h4> + <p>Activates your content as affixed content. Accepts an optional options <code>object</code>.</p> +{% highlight js %} +$('#myAffix').affix({ + offset: 15 +}) +{% endhighlight %} + + <h4><code>.affix('checkPosition')</code></h4> + <p>Recalculates the state of the affix based on the dimensions, position, and scroll position of the relevant elements. The <code>.affix</code>, <code>.affix-top</code>, and <code>.affix-bottom</code> classes are added to or removed from the affixed content according to the new state. This method needs to be called whenever the dimensions of the affixed content or the target element are changed, to ensure correct positioning of the affixed content.</p> + {% highlight js %}$('#myAffix').affix('checkPosition'){% endhighlight %} <h3 id="affix-events">Events</h3> <p>Bootstrap's affix plugin exposes a few events for hooking into affix functionality.</p> diff --git a/docs/_includes/nav/javascript.html b/docs/_includes/nav/javascript.html index eba53771b..de9834248 100644 --- a/docs/_includes/nav/javascript.html +++ b/docs/_includes/nav/javascript.html @@ -117,6 +117,7 @@ <li><a href="#affix-examples">Examples</a></li> <li><a href="#affix-usage">Usage</a></li> <li><a href="#affix-options">Options</a></li> + <li><a href="#affix-methods">Methods</a></li> <li><a href="#affix-events">Events</a></li> </ul> </li> |
