Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
pling-store-development
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
12
Issues
12
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DFN2
pling-store-development
Commits
1324c264
Verified
Commit
1324c264
authored
Sep 11, 2019
by
azubieta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
workaround for input cursor invisible after navigation in webview
parent
49dbfa84
Pipeline
#1057
passed with stage
in 2 minutes and 21 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
WebviewComponent.js
app/scripts/components/WebviewComponent.js
+5
-0
No files found.
app/scripts/components/WebviewComponent.js
View file @
1324c264
...
...
@@ -102,6 +102,11 @@ export default class WebviewComponent extends BaseComponent {
this
.
_webview
.
addEventListener
(
'did-stop-loading'
,
()
=>
{
this
.
dispatch
(
'webview_loading'
,
{
isLoading
:
false
});
// workaround for Input cursor invisible after navigation in webview
// details at https://github.com/electron/electron/issues/14474
this
.
_webview
.
blur
();
this
.
_webview
.
focus
();
});
this
.
_webview
.
addEventListener
(
'dom-ready'
,
()
=>
{
...
...
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