Skip to content

Commit

Permalink
fix(debug) enable webview debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
mihhu committed Apr 12, 2024
1 parent b3e1865 commit 116f95a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion react/features/etherpad/components/native/SharedDocument.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ class SharedDocument extends PureComponent<IProps> {
renderLoading = { this._renderLoading }
source = {{ uri: _documentUrl ?? '' }}
startInLoadingState = { true }
style = { styles.sharedDoc } />
style = { styles.sharedDoc }
webviewDebuggingEnabled = { true } />
</JitsiScreen>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ class DialInSummary extends PureComponent<IProps> {
setSupportMultipleWindows = { false }
source = {{ uri: getDialInfoPageURLForURIString(summaryUrl) ?? '' }}
startInLoadingState = { true }
style = { styles.webView } />
style = { styles.webView }
webviewDebuggingEnabled = { true } />
</JitsiScreen>
);
}
Expand Down
3 changes: 2 additions & 1 deletion react/features/whiteboard/components/native/Whiteboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ class Whiteboard extends PureComponent<IProps> {
setSupportMultipleWindows = { false }
source = {{ uri }}
startInLoadingState = { true }
style = { styles.webView } />
style = { styles.webView }
webviewDebuggingEnabled = { true } />
</JitsiScreen>
);
}
Expand Down

0 comments on commit 116f95a

Please sign in to comment.