A clean and easy to use confirmation popup
$ meteor add matdutour:popup-confirm
new Confirmation({
message: "Are you sure ?",
title: "Confirmation",
cancelText: "Cancel",
okText: "Ok",
success: true // wether the button should be green or red
}, function (ok) {
// ok is true if the user clicked on "ok", false otherwise
});