var toastSuccess = $('.toast-success');
if( toastSuccess.length ) {
toastSuccess.click(function(){
$.toast({
heading: 'Welcome',
text: 'This alert needs your attention.',
position: 'top-right',
icon: 'success',
stack: false
});
});
}