|
|
@ -92,6 +92,13 @@ $.ajax({ |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Default ajax setup
|
|
|
|
|
|
|
|
$.ajaxSetup({ |
|
|
|
|
|
|
|
url: rootUrl + 'action', |
|
|
|
|
|
|
|
type: 'POST', |
|
|
|
|
|
|
|
dataType: 'json', |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Define a few functions
|
|
|
|
// Define a few functions
|
|
|
|
//
|
|
|
|
//
|
|
|
@ -310,10 +317,54 @@ function initIndex(){ |
|
|
|
|
|
|
|
|
|
|
|
// Used on the management page
|
|
|
|
// Used on the management page
|
|
|
|
function initManage(){ |
|
|
|
function initManage(){ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function ajaxifySwitch(sw,data){ |
|
|
|
|
|
|
|
$.ajax({ |
|
|
|
|
|
|
|
url: rootUrl + 'admin/action', |
|
|
|
|
|
|
|
data: data, |
|
|
|
|
|
|
|
error: function(data) { |
|
|
|
|
|
|
|
$.notify(locale.ERROR_OCCURRED, 'error'); |
|
|
|
|
|
|
|
sw.bootstrapSwitch('toggleState', true); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
success: function(data) { |
|
|
|
|
|
|
|
if (data.status === 'success'){ |
|
|
|
|
|
|
|
$.notify(data.msg, 'success'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else{ |
|
|
|
|
|
|
|
$.notify(data.msg, 'error'); |
|
|
|
|
|
|
|
sw.bootstrapSwitch('toggleState', true); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Replace timestamps with a readable date
|
|
|
|
// Replace timestamps with a readable date
|
|
|
|
$('.timeStamp').each(function(){ |
|
|
|
$('.timeStamp').each(function(){ |
|
|
|
$(this).html(timeStamp2Date(parseInt($(this).html()))); |
|
|
|
$(this).html(timeStamp2Date(parseInt($(this).html()))); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$('.bs-switch').on('switchChange.bootstrapSwitch', function(event, state) { |
|
|
|
|
|
|
|
var sw = $(this); |
|
|
|
|
|
|
|
var param = $(this).prop('id'); |
|
|
|
|
|
|
|
var room = $(this).data('room'); |
|
|
|
|
|
|
|
var data = {room: room}; |
|
|
|
|
|
|
|
if (param === 'lock'){ |
|
|
|
|
|
|
|
data.action = (state) ? 'lock' : 'unlock'; |
|
|
|
|
|
|
|
ajaxifySwitch(sw,data); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else if (param === 'askForName'){ |
|
|
|
|
|
|
|
data.action = 'askForName'; |
|
|
|
|
|
|
|
data.type = (state) ? 'set' : 'unset'; |
|
|
|
|
|
|
|
ajaxifySwitch(sw,data); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// Something isn't implemented yet ?
|
|
|
|
|
|
|
|
else{ |
|
|
|
|
|
|
|
$.notify(locale.ERROR_OCCURRED, 'error'); |
|
|
|
|
|
|
|
setTimeout(function(){ |
|
|
|
|
|
|
|
sw.bootstrapSwitch('toggleState', true); |
|
|
|
|
|
|
|
}, 500); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// This is the main function called when you join a room
|
|
|
|
// This is the main function called when you join a room
|
|
|
@ -341,12 +392,6 @@ function initVroom(room) { |
|
|
|
|
|
|
|
|
|
|
|
$('#name_local').css('background-color', peers.local.color); |
|
|
|
$('#name_local').css('background-color', peers.local.color); |
|
|
|
|
|
|
|
|
|
|
|
$.ajaxSetup({ |
|
|
|
|
|
|
|
url: rootUrl + 'action', |
|
|
|
|
|
|
|
type: 'POST', |
|
|
|
|
|
|
|
dataType: 'json',
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Screen sharing is only suported on chrome desktop > 26
|
|
|
|
// Screen sharing is only suported on chrome desktop > 26
|
|
|
|
if ( !$.browser.webkit || $.browser.android || $.browser.versionNumber < 26 ) { |
|
|
|
if ( !$.browser.webkit || $.browser.android || $.browser.versionNumber < 26 ) { |
|
|
|
$('#shareScreenLabel').addClass('disabled'); |
|
|
|
$('#shareScreenLabel').addClass('disabled'); |
|
|
|