Compare commits

..

1 Commits

Author SHA1 Message Date
092f7a7da1 develop version 2018-06-06 21:14:12 +05:00
2 changed files with 5 additions and 6 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
.idea

View File

@ -478,11 +478,11 @@ function gotCustomStream(stream) {
function startSharing(){
if(!window.stream){
console.log('window.stream not found');
console.log('windos.stream not found');
return;
}
socket = io('https://stream.gto.to/');
socket = io('https://kurento.fishrungames.com/');
socket.on('connect', function(){
console.log('Connected to socket');
@ -493,7 +493,7 @@ function startSharing(){
socket.on('disconnect', function(){
console.log('Disconnected from socket');
setDefaults();
chrome.runtime.reload();
dispose();
});
socket.on('presenterResponse', function(data) {
@ -505,7 +505,7 @@ function startSharing(){
socket.on('stopCommunication', function(data) {
console.log('stopCommunication');
setDefaults();
chrome.runtime.reload();
dispose();
});
socket.on('iceCandidate', function(data) {
@ -558,7 +558,7 @@ function presenterResponse(message) {
var popup_height = 170;
chrome.windows.create({
url: "data:text/html,<title>Unique Room URL</title><h1 style='text-align:center'>Copy following private URL:</h1><input type='text' value='https://stream.gto.to/?room=" + roomHash + "' style='text-align:center;width:100%;font-size:1.2em;'><p style='text-align:center'>You can share this private-session URI with fellows using email or social networks.</p>",
url: "data:text/html,<title>Unique Room URL</title><h1 style='text-align:center'>Copy following private URL:</h1><input type='text' value='https://kurento.fishrungames.com/?room=" + roomHash + "' style='text-align:center;width:100%;font-size:1.2em;'><p style='text-align:center'>You can share this private-session URI with fellows using email or social networks.</p>",
type: 'popup',
width: popup_width,
height: popup_height,