Files
Elite-Gaming-FiveM/resources/dopeNotify/html/pNotify.js
T
2021-12-03 01:19:31 +00:00

11 lines
360 B
JavaScript

$(function(){
window.addEventListener("message", function(event){
if(event.data.options){
var options = event.data.options;
new Noty(options).show();
}else{
var maxNotifications = event.data.maxNotifications;
Noty.setMaxVisible(maxNotifications.max, maxNotifications.queue);
};
});
});