Hinase

Results 7 comments of Hinase

Hi folks! This is a problem in a library of embedded browser (JxBrowser). I developed another gfm plugin for intelliJ compat IDEs. I'll release it right after next major release(2020.2)...

I read lines of source code and found out that detailed information for redirection is included in http response header. The information contains distance between client computer and redirecting computer...

Maybe I've found out root cause of this issue. There are 2 servers representing `httpredir.debian.org` . ``` appuser@debian-8:~$ nslookup httpredir.debian.org Server: 10.0.2.3 Address: 10.0.2.3#53 Non-authoritative answer: Name: httpredir.debian.org Address: 128.31.0.66...

Hi I came across the same issue and understand the root cause. When copying css styles from original window, the function below will be called. ![image](https://user-images.githubusercontent.com/12316730/74614398-f191eb80-515a-11ea-8d82-851c178d4eca.png) The problem is, when...

I mitigated this issue by defering page load as follows. ```javascript const win = new BrowserWindow({ width: 800, height: 600 }) const view = new BrowserView() win.setBrowserView(view) view.setBounds({ x: 0,...

Hi You need to run `npm run build` before executing `npm run serve` Please make sure you have dist/ directory in the project root directory before `npm run serve` `npm...

Try to add build option below in your `package.json` which has `main` entry for electron app: ```javascript { "main": "build/electron/main.js", ..., "build": { ..., "npmRebuild": false } } ```