Add autoSubmit crashReporter option

This commit is contained in:
Kevin Sawicki 2016-11-28 15:06:03 -08:00
parent 0c73140b07
commit 0b9a2f6be6

View file

@ -40,6 +40,23 @@ clipboard.writeHtml()
clipboard.writeHTML()
```
## `crashReporter`
```js
// Deprecated
crashReporter.start({
companyName: 'Crashly',
submitURL: 'https://crash.server.com',
autoSubmit: true
})
// Replace with
crashReporter.start({
companyName: 'Crashly',
submitURL: 'https://crash.server.com',
uploadToServer: true
})
```
## `nativeImage`
```js