У меня проблема с pnotify, я хочу проверить notify, если существует, чтобы не показывать более одного notify.
Мой код такой:
(new PNotify({
title: ''+lan[53]+'',
text: ''+lan[52]+'',
icon: 'glyphicon glyphicon-question-sign',
hide: false,
confirm: {
confirm: true
},
buttons: {
closer: false,
sticker: false
},
history: {
history: true,
maxInStack: 1
}
})).get().on('pnotify.confirm', function() {
// Some code here..
}).on('pnotify.cancel', function() {
// Some code here..
});