Fix typos
parent
da40742fd7
commit
f9e3f9b622
|
|
@ -283,7 +283,11 @@ export default class RoomClient
|
||||||
_startKeyListener()
|
_startKeyListener()
|
||||||
{
|
{
|
||||||
// Add keypress event listener on document
|
// Add keypress event listener on document
|
||||||
|
<<<<<<< HEAD
|
||||||
document.addEventListener('keydown', (event) =>
|
document.addEventListener('keydown', (event) =>
|
||||||
|
=======
|
||||||
|
document.addEventListener('keypress', (event) =>
|
||||||
|
>>>>>>> 250679c... Fix typos
|
||||||
{
|
{
|
||||||
if (event.repeat) return;
|
if (event.repeat) return;
|
||||||
const key = String.fromCharCode(event.which);
|
const key = String.fromCharCode(event.which);
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import RoomClient from '../RoomClient';
|
import RoomClient from '../RoomClient';
|
||||||
|
|
||||||
describe('new RoomClient() without paramaters throws Error', () =>
|
describe('new RoomClient() without parameters throws Error', () =>
|
||||||
{
|
{
|
||||||
test('Matches the snapshot', () =>
|
test('Matches the snapshot', () =>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ fi
|
||||||
if [ "$1" = "config" ]; then
|
if [ "$1" = "config" ]; then
|
||||||
echo 'graph_title MM stats'
|
echo 'graph_title MM stats'
|
||||||
#echo 'graph_args --base 1000 -l 0'
|
#echo 'graph_args --base 1000 -l 0'
|
||||||
echo 'graph_vlabel Actual Seesion Count'
|
echo 'graph_vlabel Actual Session Count'
|
||||||
echo 'graph_category other'
|
echo 'graph_category other'
|
||||||
echo 'graph_info This graph shows the mm stats.'
|
echo 'graph_info This graph shows the mm stats.'
|
||||||
echo 'rooms.label rooms'
|
echo 'rooms.label rooms'
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@ module.exports =
|
||||||
key : `${__dirname}/../certs/mediasoup-demo.localhost.key.pem`
|
key : `${__dirname}/../certs/mediasoup-demo.localhost.key.pem`
|
||||||
},
|
},
|
||||||
// listening Host or IP
|
// listening Host or IP
|
||||||
// If ommitted listens on every IP. ("0.0.0.0" and "::")
|
// If omitted listens on every IP. ("0.0.0.0" and "::")
|
||||||
//listeningHost: 'localhost',
|
//listeningHost: 'localhost',
|
||||||
// Listening port for https server.
|
// Listening port for https server.
|
||||||
listeningPort : 443,
|
listeningPort : 443,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue