2014-09-30 22:20:37 +00:00
|
|
|
var message_url = sbRoot + '/ui/get_messages';
|
2014-11-07 04:13:54 +00:00
|
|
|
|
|
|
|
PNotify.prototype.options.styling = 'jqueryui';
|
|
|
|
PNotify.prototype.options.buttons.closer_hover = false;
|
|
|
|
PNotify.prototype.options.delay = 4000;
|
|
|
|
PNotify.prototype.options.width = '340px';
|
|
|
|
PNotify.prototype.options.shadow = false;
|
|
|
|
PNotify.prototype.options.addclass = 'stack-bottomright';
|
|
|
|
PNotify.prototype.options.stack = {'dir1': 'up', 'dir2': 'left', 'firstpos1': 25, 'firstpos2': 25};
|
2015-02-14 18:25:38 +00:00
|
|
|
PNotify.desktop.permission();
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
function check_notifications() {
|
2015-02-14 18:25:38 +00:00
|
|
|
if(document.visibilityState == 'visible') {
|
|
|
|
$.getJSON(message_url, function(data){
|
|
|
|
$.each(data, function(name,data){
|
|
|
|
new PNotify({
|
|
|
|
type: data.type,
|
|
|
|
hide: data.type == 'notice',
|
|
|
|
title: data.title,
|
|
|
|
text: data.message.replace(/<\/?i>/ig, '*'),
|
|
|
|
history: false,
|
|
|
|
desktop: {
|
|
|
|
desktop: true,
|
|
|
|
icon: '../images/ico/apple-touch-icon-180x180.png'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout(check_notifications, 3000)
|
2014-03-10 05:18:05 +00:00
|
|
|
}
|
|
|
|
|
2014-09-30 22:20:37 +00:00
|
|
|
$(document).ready(function(){
|
2015-02-14 18:25:38 +00:00
|
|
|
check_notifications();
|
2014-03-10 05:18:05 +00:00
|
|
|
});
|