We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My toastrConfig.ts has
export function toastrConfig(toastrConfig: any): void { ... toastrConfig.positionClass = 'toast-top-right'; ... }
but for one my particular case I just want to show toastr bottom-right:
toastr.info('<input type="checkbox" checked> Success!', 'With HTML', { positionClass: 'toast-bottom-right'; });
but toasts still show on top right
The text was updated successfully, but these errors were encountered:
Sorry, I never got around to be able to override positions at the toast level but only at container level.
That would require toastr to generate multiple containers at once.
Sorry, something went wrong.
+1 for this feature ( @Foxandxss If possible, can i do this feature and create a pull request? )
No branches or pull requests
My toastrConfig.ts has
but for one my particular case I just want to show toastr bottom-right:
but toasts still show on top right
The text was updated successfully, but these errors were encountered: