Created
June 27, 2022 20:18
-
-
Save pedroblandim/7685a2f058c837dd7140b4797c1abb92 to your computer and use it in GitHub Desktop.
Liferay - JS notification sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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