|
@ -26,11 +26,11 @@ type : 'UI Module' |
|
|
</div> |
|
|
</div> |
|
|
<div class="actions"> |
|
|
<div class="actions"> |
|
|
<div class="two fluid ui buttons"> |
|
|
<div class="two fluid ui buttons"> |
|
|
<div class="ui red labeled icon button"> |
|
|
|
|
|
|
|
|
<div class="ui negative labeled icon button"> |
|
|
<i class="remove icon"></i> |
|
|
<i class="remove icon"></i> |
|
|
No |
|
|
No |
|
|
</div> |
|
|
</div> |
|
|
<div class="ui green right labeled icon button"> |
|
|
|
|
|
|
|
|
<div class="ui positive right labeled icon button"> |
|
|
Yes |
|
|
Yes |
|
|
<i class="checkmark icon"></i> |
|
|
<i class="checkmark icon"></i> |
|
|
</div> |
|
|
</div> |
|
@ -57,7 +57,7 @@ type : 'UI Module' |
|
|
<div class="ui black button"> |
|
|
<div class="ui black button"> |
|
|
Cancel |
|
|
Cancel |
|
|
</div> |
|
|
</div> |
|
|
<div class="ui green right labeled icon button"> |
|
|
|
|
|
|
|
|
<div class="ui positive right labeled icon button"> |
|
|
Add Photo |
|
|
Add Photo |
|
|
<i class="checkmark icon"></i> |
|
|
<i class="checkmark icon"></i> |
|
|
</div> |
|
|
</div> |
|
@ -337,6 +337,16 @@ type : 'UI Module' |
|
|
<td>Modal</td> |
|
|
<td>Modal</td> |
|
|
<td>Is called after a modal is hidden.</td> |
|
|
<td>Is called after a modal is hidden.</td> |
|
|
</tr> |
|
|
</tr> |
|
|
|
|
|
<tr> |
|
|
|
|
|
<td>onApprove</td> |
|
|
|
|
|
<td>Modal</td> |
|
|
|
|
|
<td>Is called after a positive or approve button is pressed</td> |
|
|
|
|
|
</tr> |
|
|
|
|
|
<tr> |
|
|
|
|
|
<td>onDeny</td> |
|
|
|
|
|
<td>Modal</td> |
|
|
|
|
|
<td>Is called after a negative or cancel button is pressed.</td> |
|
|
|
|
|
</tr> |
|
|
</tbody> |
|
|
</tbody> |
|
|
</table> |
|
|
</table> |
|
|
|
|
|
|
|
@ -358,8 +368,10 @@ type : 'UI Module' |
|
|
<td>selector</td> |
|
|
<td>selector</td> |
|
|
<td colspan="2"> |
|
|
<td colspan="2"> |
|
|
<div class="code"> |
|
|
<div class="code"> |
|
|
selector : { |
|
|
|
|
|
close : '.close, .actions .button' |
|
|
|
|
|
|
|
|
selector : { |
|
|
|
|
|
close : '.close, .actions .button', |
|
|
|
|
|
approve : '.actions .positive, .actions .approve', |
|
|
|
|
|
deny : '.actions .negative, .actions .cancel' |
|
|
}, |
|
|
}, |
|
|
</div> |
|
|
</div> |
|
|
</td> |
|
|
</td> |
|
|