Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. buttons: [{
  2. text: $t('Cancel'),
  3. class: 'action-secondary action-dismiss',
  4.  
  5. /**
  6. * Click handler.
  7. */
  8. click: function (event) {
  9. this.closeModal(event);
  10. }
  11. }, {
  12. text: $t('OK'),
  13. class: 'action-primary action-accept',
  14.  
  15. /**
  16. * Click handler.
  17. */
  18. click: function (event) {
  19. this.closeModal(event, true);
  20. }
  21. }]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement