jchv
jchv
It seems Node v7 finally removes `process.EventEmitter`. Practically speaking this means that Socket.IO 0.9.x no longer works. The correct solution, at least in my mind, would be to upgrade Socket.IO...
I hope we can fix this, but I did always dislike the complexity of having to ship go-winloader like this. I should probably attempt to port OpenWebView2Loader to Go at...
If you call: ```go w.Bind("ps", printSomething) ``` You should be able to do: ```html window.ps("test"); ```
I can try to debug it if it is a universal problem with creating with an existing window, but if that works generally it will probably be hard to figure...
Sorry about this one. As far as I can tell, the most "correct" solution is simply make use of the very poorly named `user32.IsDialogMessage` in order to use the built-in...
Understood. We can call MoveFocus on WM_ACTIVATE, which would probably accomplish what you are looking for. The change that was added is still useful since it allows us to have...
It might be hard to fully resolve this issue, though at least it's a lot better than it was. I think the keyboard focus behavior should probably simply make sense...
Right now, go-webview2 doesn’t allow you to customize the window that gets created to host the webview2 component very much, but this could be improved in the future. In theory,...
WebView2 doesn't support `webkit-app-region: drag` in this way. You can still implement region-based dragging manually, but there is no examples of doing this with go-webview2 right now. Someone has implemented...
This usually happens when you try to CoInitialize a second time, but try to create an STA when there is already a MTA. I guess it would be necessary for...