Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit 38613e4

Browse files
author
benoit.fonty
committed
[FIX] fixed configuration by attribute #1
1 parent 7eb6360 commit 38613e4

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# [v5.0.1](https://github.com/MyScript/myscript-common-element/tree/v5.0.1)
2+
3+
## Bug fixed
4+
5+
- The attributes `processdelay` and `triggerdelay` are now correctly transfered to configuration.
6+
17
# [v5.0.0](https://github.com/MyScript/myscript-common-element/tree/v5.0.0)
28

39
`myscript-common-element` now supports all the features introduced by the version [4.2.0 of MyScriptJS](https://github.com/MyScript/myscript-js/tree/v4.2.0).

myscript-common-element.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -656,10 +656,10 @@ class MyScriptCommonElement extends GestureEventListeners(mixinBehaviors([IronRe
656656
conf.recognitionParams.server.websocket = {};
657657
}
658658
if (triggerdelay) {
659-
conf.triggerdelay = triggerdelay;
659+
conf.triggerDelay = triggerdelay;
660660
}
661661
if (processdelay) {
662-
conf.processdelay = processdelay;
662+
conf.processDelay = processdelay;
663663
}
664664
if (protocol) {
665665
conf.recognitionParams.protocol = protocol;

0 commit comments

Comments
 (0)