diff options
| author | Jacob Thornton <[email protected]> | 2011-11-07 09:58:42 -0800 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2011-11-07 09:58:42 -0800 |
| commit | b37a336417b0ef447eed78a66762be1ac0f0fba4 (patch) | |
| tree | 36dd344d259281aef171fa46cfe9b17e258970aa /docs | |
| parent | b15e24e3d460ef2cbe20f13c648b42024be096fa (diff) | |
| parent | 1b43c87eafc8948c517770282a63227cd9c5d792 (diff) | |
| download | bootstrap-b37a336417b0ef447eed78a66762be1ac0f0fba4.tar.xz bootstrap-b37a336417b0ef447eed78a66762be1ac0f0fba4.zip | |
Merge pull request #554 from rvagg/poveropt
optionable selectors for title & content elements
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/javascript.html | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/docs/javascript.html b/docs/javascript.html index 6d6701070..494773512 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -487,8 +487,8 @@ $('#.tabs').bind('change', function (e) { <thead> <tr> <th style="width: 100px;">Name</th> - <th style="width: 100px;">type</th> - <th style="width: 50px;">default</th> + <th style="width: 95px;">type</th> + <th style="width: 95px;">default</th> <th>description</th> </tr> </thead> @@ -557,7 +557,7 @@ $('#.tabs').bind('change', function (e) { <td>template</td> <td>string</td> <td>[default markup]</td> - <td>The html template used for rendering a twipsy.</td> + <td>the html template used for rendering a twipsy</td> </tr> </tbody> </table> @@ -613,8 +613,8 @@ $('#.tabs').bind('change', function (e) { <thead> <tr> <th style="width: 100px;">Name</th> - <th style="width: 100px;">type</th> - <th style="width: 50px;">default</th> + <th style="width: 95px;">type</th> + <th style="width: 95px;">default</th> <th>description</th> </tr> </thead> @@ -689,7 +689,19 @@ $('#.tabs').bind('change', function (e) { <td>template</td> <td>string</td> <td>[default markup]</td> - <td>The html template used for rendering a popover.</td> + <td>the html template used for rendering a popover</td> + </tr> + <tr> + <td>titleSelector</td> + <td>string</td> + <td>.title</td> + <td>selector used to find the title element within the popover</td> + </tr> + <tr> + <td>contentSelector</td> + <td>string</td> + <td>.content p</td> + <td>selector used to find the content element within the popover</td> </tr> </tbody> </table> |
