Enable Jappix mini chat.

This commit is contained in:
opi 2016-03-22 16:54:58 +01:00
parent d2b63f2b3e
commit c4cd82a5d7
2 changed files with 45 additions and 39 deletions

View file

@ -144,29 +144,32 @@
scrollTop: jQuery(window).height() + 80
}, 500);
});
$(".actions").css('opacity', 0);
// $(".actions").css('opacity', 0);
// Jappix mini chat
jQuery.ajaxSetup({cache: false});
jQuery.getScript('https://'+ location.host +'/mini/javascripts/mini.js', function() {
HOST_BOSH = 'https://'+ location.host +'/http-bind/';
jQuery.getScript('https://yunohost.org/_js/jappix_mini.js', function() {
HOST_BOSH = 'https://yunohost.org/http-bind/';
JappixMini.launch({
connection: {
domain: 'anonymous.yunohost.org'
domain: "anonymous.yunohost.com",
},
application: {
network: {
autoconnect: false
autoconnect: false,
},
interface: {
showpane: true,
animate: true
showpane: false,
animate: false,
},
groupchat: {
open: ['support@conference.yunohost.org']
}
}
},
});
});
</script>

View file

@ -147,28 +147,31 @@
}, 500);
});
// $(".actions").css('opacity', 0);
// Jappix mini chat
jQuery.ajaxSetup({cache: false});
jQuery.getScript('https://'+ location.host +'/mini/javascripts/mini.js', function() {
HOST_BOSH = 'https://'+ location.host +'/http-bind/';
jQuery.getScript('https://yunohost.org/_js/jappix_mini.js', function() {
HOST_BOSH = 'https://yunohost.org/http-bind/';
JappixMini.launch({
connection: {
domain: 'anonymous.yunohost.org'
domain: "anonymous.yunohost.com",
},
application: {
network: {
autoconnect: false
autoconnect: false,
},
interface: {
showpane: true,
animate: true
showpane: false,
animate: false,
},
groupchat: {
open: ['support@conference.yunohost.org']
}
}
},
});
});
</script>