Browse Source

Add ok/cancel combination to the selectors list

pull/511/head
Mohammad Younes 11 years ago
parent
commit
d9a1041092
1 changed files with 5 additions and 5 deletions
  1. 10
      server/documents/modules/modal.html.eco

10
server/documents/modules/modal.html.eco

@ -168,7 +168,7 @@ type : 'UI Module'
<div class="no example"> <div class="no example">
<h4 class="ui header">Approve / Deny Callbacks</h4> <h4 class="ui header">Approve / Deny Callbacks</h4>
<p>Modals will automatically tie approve deny callbacks to any positive/approve or negative/deny buttons. If a callback returns false it will prevent the modal from closing</p>
<p>Modals will automatically tie approve deny callbacks to any positive/approve or negative/deny or ok/cancel buttons. If a callback returns false it will prevent the modal from closing</p>
<div class="code" data-demo="true"> <div class="code" data-demo="true">
$('.basic.modal') $('.basic.modal')
.modal('setting', { .modal('setting', {
@ -444,7 +444,7 @@ type : 'UI Module'
<tr> <tr>
<td>onDeny</td> <td>onDeny</td>
<td>Modal</td> <td>Modal</td>
<td>Is called after a negative or deny button is pressed.</td>
<td>Is called after a negative or deny or cancel button is pressed.</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
@ -472,8 +472,8 @@ type : 'UI Module'
<div class="code"> <div class="code">
selector : { selector : {
close : '.close, .actions .button', close : '.close, .actions .button',
approve : '.actions .positive, .actions .approve',
deny : '.actions .negative, .actions .deny'
approve : '.actions .positive, .actions .approve, .actions .ok',
deny : '.actions .negative, .actions .deny, .actions .cancel'
}, },
</div> </div>
</td> </td>
@ -539,4 +539,4 @@ type : 'UI Module'
</table> </table>
</div> </div>
</div>
</div>
Loading…
Cancel
Save