new Toast({
message: 'This is an example with custom buttons',
type: 'success',
customButtons: [
{
text: 'Refresh the page',
onClick: function() {
window.location.reload();
}
},
{
text: 'Follow @ireaderinokun',
onClick: function() {
window.open('https://twitter.com/ireaderinokun');
}
}
]
});