pull/1664/head
Tuğçe Küçükoğlu 2021-10-12 16:45:36 +03:00
parent e2cdf1825b
commit bcc4bd52f5
1 changed files with 41 additions and 32 deletions

View File

@ -107,30 +107,30 @@ toggle(event) {
<div class="doc-tablewrapper"> <div class="doc-tablewrapper">
<table class="doc-table"> <table class="doc-table">
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Parameters</th> <th>Parameters</th>
<th>Description</th> <th>Description</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td>toggle</td> <td>toggle</td>
<td>event: Browser event <br /> <td>event: Browser event <br />
target: Optional target if event.currentTarget should not be used</td> target: Optional target if event.currentTarget should not be used</td>
<td>Toggles the visibility of the overlay.</td> <td>Toggles the visibility of the overlay.</td>
</tr> </tr>
<tr> <tr>
<td>show</td> <td>show</td>
<td>event: Browser event <br /> <td>event: Browser event <br />
target: Optional target if event.currentTarget should not be used</td> target: Optional target if event.currentTarget should not be used</td>
<td>Shows the overlay.</td> <td>Shows the overlay.</td>
</tr> </tr>
<tr> <tr>
<td>hide</td> <td>hide</td>
<td>-</td> <td>-</td>
<td>Hides the overlay.</td> <td>Hides the overlay.</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div> </div>
@ -138,16 +138,25 @@ toggle(event) {
<h5>Events</h5> <h5>Events</h5>
<div class="doc-tablewrapper"> <div class="doc-tablewrapper">
<table class="doc-table"> <table class="doc-table">
<tr> <thead>
<td>show</td> <tr>
<td>-</td> <th>Name</th>
<td>Callback to invoke when the overlay is shown.</td> <th>Parameters</th>
</tr> <th>Description</th>
<tr> </tr>
<td>hide</td> </thead>
<td>-</td> <tbody>
<td>Callback to invoke when the overlay is hidden.</td> <tr>
</tr> <td>show</td>
<td>-</td>
<td>Callback to invoke when the overlay is shown.</td>
</tr>
<tr>
<td>hide</td>
<td>-</td>
<td>Callback to invoke when the overlay is hidden.</td>
</tr>
</tbody>
</table> </table>
</div> </div>