File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,8 @@ Gleap.preFillForm({
5
5
"userId" : "1233"
6
6
} ) ;
7
7
8
- // Gleap.setApiUrl("http://localhost:9000");
8
+ Gleap . setApiUrl ( "http://localhost:9000" ) ;
9
9
// Gleap.setLanguage("en");
10
- Gleap . setFrameUrl ( "http://localhost:3000" ) ;
11
10
Gleap . initialize ( "ogWhNhuiZcGWrva5nlDS8l7a78OfaLlV" ) ;
12
11
13
12
Gleap . identify ( "user_19283" , {
Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ export class GleapScreenRecorder {
30
30
if ( MediaRecorder . isTypeSupported ( "video/mp4" ) ) {
31
31
return "video/mp4" ;
32
32
}
33
+ if ( MediaRecorder . isTypeSupported ( "video/webm;codecs=h264" ) ) {
34
+ return "video/webm;codecs=h264" ;
35
+ }
33
36
return "video/webm" ;
34
37
}
35
38
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ export const injectStyledCSS = (
118
118
}
119
119
120
120
.gleap-frame-container--animate {
121
- transition: max-height 0.3s ease-in;
121
+ transition: max-height 0.2s ease-in;
122
122
pointer-events: auto !important;
123
123
}
124
124
You can’t perform that action at this time.
0 commit comments