Skip to content

Commit 761a1f6

Browse files
authored
fix(click-block): click block is now showing on all screns. It wasn't previously on Android and des (#6846)
click block is now showing on all screns. It wasn't previously on Android and desktop
1 parent ff1daa6 commit 761a1f6

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/config/bootstrap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ function setupDom(window: Window, document: Document, config: Config, platform:
187187
bodyEle.classList.add('enable-hover');
188188
}
189189

190-
if (config.get('clickBlock')) {
190+
if ( config.get('clickBlock') !== false ) {
191191
clickBlock.enable();
192192
}
193193

src/platform/registry.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ Platform.register({
9595
],
9696
settings: {
9797
autoFocusAssist: 'delay',
98-
clickBlock: true,
9998
hoverCSS: false,
10099
inputBlurring: isIOSDevice,
101100
inputCloning: isIOSDevice,
@@ -150,7 +149,6 @@ Platform.register({
150149
settings: {
151150
mode: 'wp',
152151
autoFocusAssist: 'immediate',
153-
clickBlock: true,
154152
hoverCSS: false
155153
},
156154
isMatch(p: Platform): boolean {

0 commit comments

Comments
 (0)