Files
contact-book/ContactBook.package/WAContactBook.class/instance/renderRemoveButtonForContact.on..st
2018-05-12 15:25:36 +02:00

6 lines
160 B
Smalltalk

rendering
renderRemoveButtonForContact: aContact on: html
html tbsButton
beDanger;
callback: [ self contactBook removeContact: aContact ];
with: 'Remove'