Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Yoann HOUPERT
hublot
Commits
fb1a8bbd
Commit
fb1a8bbd
authored
Jun 13, 2017
by
Tom JORQUERA
Browse files
Merge branch 'issue-21' into 'master'
fix external lib loading issue Closes #21 See merge request !18
parents
dec313d8
eb07739c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
client/robot/robot.js
client/robot/robot.js
+2
-1
lib/runner.js
lib/runner.js
+5
-3
No files found.
client/robot/robot.js
View file @
fb1a8bbd
...
...
@@ -7,6 +7,8 @@
const
config
=
arguments
[
1
];
robotController
.
external
.
load
(
config
);
robot
=
{
recordedParticipants
:
{},
...
...
@@ -18,7 +20,6 @@ robot = {
return
mediaRecorder
;
},
start
:
()
=>
{
robotController
.
external
.
load
(
config
);
robotLib
.
stt
=
robotLib
.
stt
(
config
);
robotLib
.
archive
=
robotLib
.
archive
(
config
);
...
...
lib/runner.js
View file @
fb1a8bbd
...
...
@@ -16,9 +16,11 @@ module.exports = config => ({
.
then
(()
=>
resolveSequentially
(
f
=>
client
.
execute
(
f
,
room
,
clientConfig
),
controllerFilesList
))
.
then
(()
=>
client
.
execute
(()
=>
{
/* eslint-disable no-undef */
robot
.
start
();
/* eslint-enable */
setTimeout
(()
=>
{
/* eslint-disable no-undef */
robot
.
start
();
/* eslint-enable */
},
500
);
}))
.
waitForVisible
(
'
#displayname
'
,
30000
)
.
setValue
(
'
#displayname
'
,
clientConfig
.
name
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment