|
@@ -52,7 +52,7 @@ const DEFAULT_WIDTH = 640;
|
52
|
52
|
*/
|
53
|
53
|
const DEFAULT_HEIGHT = 480;
|
54
|
54
|
|
55
|
|
-const EtherpadContainerType = "etherpad";
|
|
55
|
+const ETHERPAD_CONTAINER_TYPE = "etherpad";
|
56
|
56
|
|
57
|
57
|
/**
|
58
|
58
|
* Container for Etherpad iframe.
|
|
@@ -159,7 +159,7 @@ export default class EtherpadManager {
|
159
|
159
|
openEtherpad () {
|
160
|
160
|
this.etherpad = new Etherpad(this.domain, this.name);
|
161
|
161
|
VideoLayout.addLargeVideoContainer(
|
162
|
|
- EtherpadContainerType,
|
|
162
|
+ ETHERPAD_CONTAINER_TYPE,
|
163
|
163
|
this.etherpad
|
164
|
164
|
);
|
165
|
165
|
}
|
|
@@ -174,9 +174,10 @@ export default class EtherpadManager {
|
174
|
174
|
}
|
175
|
175
|
|
176
|
176
|
let isVisible = VideoLayout.isLargeContainerTypeVisible(
|
177
|
|
- EtherpadContainerType
|
|
177
|
+ ETHERPAD_CONTAINER_TYPE
|
178
|
178
|
);
|
179
|
179
|
|
180
|
|
- VideoLayout.showLargeVideoContainer(EtherpadContainerType, !isVisible);
|
|
180
|
+ VideoLayout.showLargeVideoContainer(
|
|
181
|
+ ETHERPAD_CONTAINER_TYPE, !isVisible);
|
181
|
182
|
}
|
182
|
183
|
}
|