I've been attempting to stack the toast messages generated by ngToast on top of each other. After reading through the documentation at , I came across a parameter labeled "newestOnTop". I implemented it in my app.coffee file like this:
ngToastProvider.configure {
newestOnTop: true
}
However, my new toasts are still showing up behind the existing ones. Any suggestions?