mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-06 01:15:05 -05:00
25 lines
647 B
JavaScript
25 lines
647 B
JavaScript
|
var message_url = sbRoot + '/ui/get_messages';
|
||
|
$.pnotify.defaults.pnotify_width = "340px";
|
||
|
$.pnotify.defaults.pnotify_history = false;
|
||
|
$.pnotify.defaults.pnotify_delay = 4000;
|
||
|
|
||
|
function check_notifications() {
|
||
|
$.getJSON(message_url, function(data){
|
||
|
$.each(data, function(name,data){
|
||
|
$.pnotify({
|
||
|
pnotify_type: data.type,
|
||
|
pnotify_hide: data.type == 'notice',
|
||
|
pnotify_title: data.title,
|
||
|
pnotify_text: data.message
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
|
||
|
setTimeout(check_notifications, 3000)
|
||
|
}
|
||
|
|
||
|
$(document).ready(function(){
|
||
|
|
||
|
check_notifications();
|
||
|
|
||
|
});
|