Commit 60da83b4 by Иван Кубота

only digits in room name

parent 249ee1e9
let content, remoteVideoEl;
const store = window.store = new Store({
conference_id: 'LUCID-4',
conference_id: 'DDDD'.replace(/D/g, ()=>Math.random()*10|0), // LUCID
connection: false,
webcamtypes: [
{text: 'Center', value: 'Center', filter: 'OfficeUserLeft'},
......
......@@ -280,7 +280,7 @@ Screen.Conference = function() {
D.div({cls: 'block hidden'},
D.div({cls: 'header'}, 'Conference info'),
LabeledInput({label: 'Session ID', cls: 'callapp_address input', autocomplete: 'off', value: 'LUCID-4'}, 'conference_id'),
LabeledInput({label: 'Session ID', cls: 'callapp_address input', autocomplete: 'off', value: 'DDDD'.replace(/D/g, ()=>Math.random()*10|0)}, 'conference_id'), // LUCID
),
D.div({cls: ['block', {hidden: true}]}, //Store.NOT(isConnected)
D.div({cls: ['header']}, 'Remote video'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment