Skip to main content

All Questions

Tagged with
0 votes
1 answer
319 views

How to keep multiple subwindows open in Electron?

My app structure overview: Main window (loaded via win.loadURL, has no access to electron). Five subwindows opened via window.open(url, '_blank'). Currently, when opening multiple subwindows, the ...
Wenfang Du's user avatar
  • 10.5k
2 votes
1 answer
72 views

CSS animation automatically goes to default

https://jsfiddle.net/t3w1Lqr0/1/ When I run this code it sometimes works as expected and sometimes glitches and goes to 0deg See the gif Below ↓ I am using it for electron. I works most of the time in ...
Ɗααɳιടԋ Sყҽԃ's user avatar
2 votes
2 answers
4k views

How to open developer tools inside of a webview

I'm developing a browser using Electron. I've been trying to open the developer tools of a webview, and I did it using that code: document.getElementById("MyWebView").openDevTools(); But the problem ...
Shared Account's user avatar
1 vote
1 answer
1k views

HTML5 video not showing image with very large (local) files on Chrome(ium)

I'm working on an Electronjs app that needs to play very large videos stored in the user's machine. I've tried both with the vanilla html5 video tag and with other players. Small videos load and play ...
Kajuna's user avatar
  • 569
0 votes
1 answer
206 views

Does .container have a special meaning in CSS, Electron, or Chromium?

I'm a programmer with background in C++ and Python who's learning JS, HTML, and CSS. I'm currently learning Electron through a book called Electron in Action. One of the examples contains an HTML ...
Major Despard's user avatar
6 votes
1 answer
18k views

React input[type=date] component does not work properly

I am building a react-based electron application and stumbled across a problem with date fields. When using an input field with type='date' the onChange event is not fired. Additionally it seems I ...
Philipp Wrann's user avatar
3 votes
1 answer
4k views

Electron : How to print only a part of html (div) in electron silently?

What i am trying to achieve is that the web page which is remotely hosted and is being loaded in my electron app would want the Electron app to print only a particular div element . I know if i use ...
Aakash Uniyal's user avatar
4 votes
1 answer
1k views

Is it possible to build a standalone HTML5 App *without* bundling a browser?

Solutions such as Electron require bundling an entire browser with the resulting .app build, which causes it to have several gigabytes even for a single hello world app. Most users already have Chrome ...
MaiaVictor's user avatar
  • 52.4k
3 votes
0 answers
524 views

Prevent drag and drop navigation onto window scrollbar

I have a problem whereby my html application 'navigated' to the content the user would drag and drop onto it. For example, dropping a text file on the application would cause the page to navigate to ...
ArkTekniK's user avatar
  • 316
43 votes
4 answers
57k views

Native looking UI components for Electron application

I'm using Electron (formerly Atom Shell) for a desktop application. It is a lot of fun to use and event-driven programming has its merits. I've got all HTML, CSS & JS power at my hands because it ...
Hedge's user avatar
  • 16.5k