2015-08-03 11:35:01 +02:00
|
|
|
function postStart() {
|
|
|
|
if(localStorage.postStart == 1) {
|
|
|
|
// We disable the notifications for a couple of seconds
|
|
|
|
Notification.inhibit(10);
|
2015-08-19 11:28:28 +02:00
|
|
|
|
2015-08-03 11:35:01 +02:00
|
|
|
Presence_ajaxSet();
|
|
|
|
//Presence_ajaxConfigGet();
|
|
|
|
Presence_ajaxServerCapsGet();
|
|
|
|
Presence_ajaxBookmarksGet();
|
|
|
|
Presence_ajaxUserRefresh();
|
|
|
|
Presence_ajaxFeedRefresh();
|
2015-08-19 11:28:28 +02:00
|
|
|
Presence_ajaxServerDisco();
|
2015-08-03 11:35:01 +02:00
|
|
|
//Menu_ajaxRefresh();
|
|
|
|
localStorage.postStart = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var Presence = {
|
|
|
|
refresh : function() {
|
|
|
|
var textarea = document.querySelector('form[name=presence] textarea');
|
|
|
|
|
|
|
|
if(textarea != null) {
|
|
|
|
movim_textarea_autoheight(textarea);
|
|
|
|
|
2015-11-13 13:37:39 +01:00
|
|
|
textarea.oninput = function(event) {
|
2015-08-03 11:35:01 +02:00
|
|
|
movim_textarea_autoheight(this);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
var presences = document.querySelectorAll('#dialog form ul li');
|
|
|
|
|
|
|
|
var i = 0;
|
|
|
|
while(i < presences.length)
|
|
|
|
{
|
|
|
|
presences[i].onclick = function(e) {
|
|
|
|
this.querySelector('label').click();
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MovimWebsocket.attach(function()
|
|
|
|
{
|
|
|
|
Presence.refresh();
|
|
|
|
postStart();
|
|
|
|
});
|