onAfterCopy

fires after a card has been copied

void onAfterCopy(number|string id);
idnumber|stringthe ID of the original card

Example

$$("board").atachEvent("onAfterCopy",function(id){
  webix.message("Card " + id + " copied");
});

See also
Back to top