11 lines
360 B
JavaScript
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);
|
|
};
|
|
});
|
|
}); |