Renames EtherpadContainerType to ETHERPAD_CONTAINER_TYPE.
This commit is contained in:
parent
7b55d8b526
commit
eefdbd4fe5
|
@ -52,7 +52,7 @@ const DEFAULT_WIDTH = 640;
|
||||||
*/
|
*/
|
||||||
const DEFAULT_HEIGHT = 480;
|
const DEFAULT_HEIGHT = 480;
|
||||||
|
|
||||||
const EtherpadContainerType = "etherpad";
|
const ETHERPAD_CONTAINER_TYPE = "etherpad";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Container for Etherpad iframe.
|
* Container for Etherpad iframe.
|
||||||
|
@ -159,7 +159,7 @@ export default class EtherpadManager {
|
||||||
openEtherpad () {
|
openEtherpad () {
|
||||||
this.etherpad = new Etherpad(this.domain, this.name);
|
this.etherpad = new Etherpad(this.domain, this.name);
|
||||||
VideoLayout.addLargeVideoContainer(
|
VideoLayout.addLargeVideoContainer(
|
||||||
EtherpadContainerType,
|
ETHERPAD_CONTAINER_TYPE,
|
||||||
this.etherpad
|
this.etherpad
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -174,9 +174,10 @@ export default class EtherpadManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
let isVisible = VideoLayout.isLargeContainerTypeVisible(
|
let isVisible = VideoLayout.isLargeContainerTypeVisible(
|
||||||
EtherpadContainerType
|
ETHERPAD_CONTAINER_TYPE
|
||||||
);
|
);
|
||||||
|
|
||||||
VideoLayout.showLargeVideoContainer(EtherpadContainerType, !isVisible);
|
VideoLayout.showLargeVideoContainer(
|
||||||
|
ETHERPAD_CONTAINER_TYPE, !isVisible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue