I am using Angular JS 1.4.1 and Angular Toastr 1.7.0.
Most of the toastrs in my app are the default top right, and work fine.
However, I want to call ONE with the positionClass: 'toast-top-full-width'
and I can't get it to work. It still opens at the defaults set it my app config.
$scope.tabLeave = function () {
toastr.warning('Warning', 'You have unsaved data.', {
closeButton: true,
positionClass: 'toast-top-full-width'
});
};
What am missing here?