s/liste/listen

This commit is contained in:
Cheng Zhao 2015-06-16 10:08:32 +08:00
parent 7da3e84369
commit e96119fc32

View file

@ -62,7 +62,12 @@ Emitted when application is quitting.
* `event` Event
* `path` String
Emitted when user wants to open a file with the application, it usually happens when the application is already opened and then OS wants to reuse the application to open file. But it is also emitted when a file is dropped onto the dock and the application is not yet running. Make sure to liste to open-file very early in your application startup to handle this case (even before the ready event is emitted).
Emitted when user wants to open a file with the application, it usually happens
when the application is already opened and then OS wants to reuse the
application to open file. But it is also emitted when a file is dropped onto the
dock and the application is not yet running. Make sure to listen to open-file
very early in your application startup to handle this case (even before the
`ready` event is emitted).
You should call `event.preventDefault()` if you want to handle this event.