fixed typos (#32748)

* fixed typos

* Update index.md
pull/31050/head^2
Nextheory Labs 2019-02-12 04:59:44 +05:30 committed by Randell Dawson
parent 61b870a83a
commit 527c9cd28e
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ Additionally, Electron comes with support for auto-updating, crash reporting, an
Core features can be explored using the [Electron API demos](https://github.com/electron/electron-api-demos).
### Advantages of Electron
Electron applications are similar to any other desktop applications as they are installed locally on users hard drive. They can be launched directly from the OSX Dock or Windows taskbar, and there is no need to launch a browser and navigate to some url to run your application. When you need to open or save a file, the dialogs are native in appearance and interaction. Electron application can support full drag-and-drop interaction with a local file system, or even associate itself with a file type, so when a user double-clicks the associated file, our app will open.
Electron applications are similar to any other desktop applications as they are installed locally on a user's hard drive. They can be launched directly from the OSX Dock or Windows taskbar, and there is no need to launch a browser and navigate to some url to run your application. When you need to open or save a file, the dialogs are native in appearance and interaction. Electron application can support full drag-and-drop interaction with a local file system, or even associate itself with a file type, so when a user double-clicks the associated file, our app will open.
Electron also gives us the ability to have custom application menus that conform to each platforms user interface guidelines. Contextual menus are available that allow user to control-click or right-click to display custom menu. If we need to trigger a system-wide notification, we can leverage Chromiums Notification API to do so. Electron will go even further than traditional window desktop applications, and create applications that only live in the menubar or system tray. In short Electron provides a solid framework that will allow you to develop first-class desktop applications.