Application
Add Custom Javascript to your Desktop App
We use the most up to date version of Chromium so you can use the latest browser features when your app is running as a desktop app.
You can use the isDesktopApp()
fucntion to add different behaviour to your app when it is running as a desktop app.
Alternatively, We expose a window.todesktop
object if you want a quick solution.
If you have a lot of javascript in your desktop app then we recommend separating all of your desktop specific logic into a separate javascript file.
Add Custom CSS to your Desktop App
We add a todesktop
class to the html element on each page of your app. You can use this to identify when your app is being run as a desktop app.
If you want to hide an element on your desktop app you could do something like this:
You can also do the opposite and only show an element in your desktop app.
A common use-case is to show browser controls (back, forward, refresh) in your desktop app's user interface. Here's an example of how you could achieve this:
Platform-specific CSS
You may wish to add styles that apply only on specific operating systems.
In the styles below we add a margin that will only apply on the Mac operating system.