mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Enable Jappix mini chat.
This commit is contained in:
parent
d2b63f2b3e
commit
c4cd82a5d7
2 changed files with 45 additions and 39 deletions
43
index.md
43
index.md
|
@ -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/';
|
||||
JappixMini.launch({
|
||||
connection: {
|
||||
domain: 'anonymous.yunohost.org'
|
||||
},
|
||||
jQuery.getScript('https://yunohost.org/_js/jappix_mini.js', function() {
|
||||
HOST_BOSH = 'https://yunohost.org/http-bind/';
|
||||
JappixMini.launch({
|
||||
connection: {
|
||||
domain: "anonymous.yunohost.com",
|
||||
},
|
||||
|
||||
application: {
|
||||
network: {
|
||||
autoconnect: false
|
||||
},
|
||||
application: {
|
||||
network: {
|
||||
autoconnect: false,
|
||||
},
|
||||
|
||||
interface: {
|
||||
showpane: true,
|
||||
animate: true
|
||||
},
|
||||
interface: {
|
||||
showpane: false,
|
||||
animate: false,
|
||||
},
|
||||
|
||||
groupchat: {
|
||||
open: ['support@conference.yunohost.org']
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
groupchat: {
|
||||
open: ['support@conference.yunohost.org']
|
||||
}
|
||||
},
|
||||
});
|
||||
});
|
||||
</script>
|
41
index_fr.md
41
index_fr.md
|
@ -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/';
|
||||
JappixMini.launch({
|
||||
connection: {
|
||||
domain: 'anonymous.yunohost.org'
|
||||
},
|
||||
jQuery.getScript('https://yunohost.org/_js/jappix_mini.js', function() {
|
||||
HOST_BOSH = 'https://yunohost.org/http-bind/';
|
||||
JappixMini.launch({
|
||||
connection: {
|
||||
domain: "anonymous.yunohost.com",
|
||||
},
|
||||
|
||||
application: {
|
||||
network: {
|
||||
autoconnect: false
|
||||
},
|
||||
application: {
|
||||
network: {
|
||||
autoconnect: false,
|
||||
},
|
||||
|
||||
interface: {
|
||||
showpane: true,
|
||||
animate: true
|
||||
},
|
||||
interface: {
|
||||
showpane: false,
|
||||
animate: false,
|
||||
},
|
||||
|
||||
groupchat: {
|
||||
open: ['support@conference.yunohost.org']
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
groupchat: {
|
||||
open: ['support@conference.yunohost.org']
|
||||
}
|
||||
},
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue