Skip to content

Instantly share code, notes, and snippets.

@pedroblandim
Created June 27, 2022 20:18
Show Gist options
  • Save pedroblandim/7685a2f058c837dd7140b4797c1abb92 to your computer and use it in GitHub Desktop.
Save pedroblandim/7685a2f058c837dd7140b4797c1abb92 to your computer and use it in GitHub Desktop.
Liferay - JS notification sample
AUI().use("liferay-notification", () => {
new Liferay.Notification({
closeable: true,
delay: {
hide: 5000,
show: 0,
},
duration: 1500,
message: "Test message",
render: true,
title: "",
type: "success",
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment