var videoRoom;var textRoom;
Janus.init({debug: 'all', callback: function(){
videoroom = new Janus({
server: 'https://xxx:8089/janus',
success:function(){
videoroom.attach({
plugin: "janus.plugin.videoroom"
});
},
});
textroom = new Janus({
server: 'https://xxx:8089/janus',
success:function(){
textroom.attach({
plugin: "janus.plugin.videoroom"
});
},
});