Skip to content

Commit b002b48

Browse files
authored
chore: remove trailing whitespace (#921)
1 parent 979155e commit b002b48

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

README.md

+22-22
Original file line numberDiff line numberDiff line change
@@ -218,15 +218,15 @@ __Supported Platforms__
218218

219219
More examples [here](#camera-getPicture-examples). Quirks [here](#camera-getPicture-quirks).
220220

221-
**Kind**: static method of <code>[camera](#module_camera)</code>
221+
**Kind**: static method of <code>[camera](#module_camera)</code>
222222

223223
| Param | Type | Description |
224224
| --- | --- | --- |
225225
| successCallback | <code>[onSuccess](#module_camera.onSuccess)</code> | |
226226
| errorCallback | <code>[onError](#module_camera.onError)</code> | |
227227
| options | <code>[CameraOptions](#module_camera.CameraOptions)</code> | CameraOptions |
228228

229-
**Example**
229+
**Example**
230230
```js
231231
navigator.camera.getPicture(cameraSuccess, cameraError, cameraOptions);
232232
```
@@ -242,8 +242,8 @@ __Supported Platforms__
242242

243243
- iOS
244244

245-
**Kind**: static method of <code>[camera](#module_camera)</code>
246-
**Example**
245+
**Kind**: static method of <code>[camera](#module_camera)</code>
246+
**Example**
247247
```js
248248
navigator.camera.cleanup(onSuccess, onFail);
249249

@@ -260,7 +260,7 @@ function onFail(message) {
260260
### camera.onError : <code>function</code>
261261
Callback function that provides an error message.
262262

263-
**Kind**: static typedef of <code>[camera](#module_camera)</code>
263+
**Kind**: static typedef of <code>[camera](#module_camera)</code>
264264

265265
| Param | Type | Description |
266266
| --- | --- | --- |
@@ -271,13 +271,13 @@ Callback function that provides an error message.
271271
### camera.onSuccess : <code>function</code>
272272
Callback function that provides the image data.
273273

274-
**Kind**: static typedef of <code>[camera](#module_camera)</code>
274+
**Kind**: static typedef of <code>[camera](#module_camera)</code>
275275

276276
| Param | Type | Description |
277277
| --- | --- | --- |
278278
| imageData | <code>string</code> | Data URI, _or_ the image file URI, depending on [`cameraOptions`](#module_camera.CameraOptions) in effect. |
279279

280-
**Example**
280+
**Example**
281281
```js
282282
// Show image captured with FILE_URI
283283
function cameraCallback(imageData) {
@@ -299,7 +299,7 @@ function cameraCallback(imageData) {
299299
Optional parameters to customize the camera settings.
300300
* [Quirks](#CameraOptions-quirks)
301301

302-
**Kind**: static typedef of <code>[camera](#module_camera)</code>
302+
**Kind**: static typedef of <code>[camera](#module_camera)</code>
303303
**Properties**
304304

305305
| Name | Type | Default | Description |
@@ -327,7 +327,7 @@ Optional parameters to customize the camera settings.
327327
### Camera.DestinationType : <code>enum</code>
328328
Defines the output format of `Camera.getPicture` call.
329329

330-
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
330+
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
331331
**Properties**
332332

333333
| Name | Type | Default | Description |
@@ -338,7 +338,7 @@ Defines the output format of `Camera.getPicture` call.
338338
<a name="module_Camera.EncodingType"></a>
339339

340340
### Camera.EncodingType : <code>enum</code>
341-
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
341+
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
342342
**Properties**
343343

344344
| Name | Type | Default | Description |
@@ -349,7 +349,7 @@ Defines the output format of `Camera.getPicture` call.
349349
<a name="module_Camera.MediaType"></a>
350350

351351
### Camera.MediaType : <code>enum</code>
352-
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
352+
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
353353
**Properties**
354354

355355
| Name | Type | Default | Description |
@@ -363,7 +363,7 @@ Defines the output format of `Camera.getPicture` call.
363363
### Camera.PictureSourceType : <code>enum</code>
364364
Defines the output format of `Camera.getPicture` call.
365365

366-
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
366+
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
367367
**Properties**
368368

369369
| Name | Type | Default | Description |
@@ -377,21 +377,21 @@ Defines the output format of `Camera.getPicture` call.
377377
### Camera.PopoverArrowDirection : <code>enum</code>
378378
Matches iOS UIPopoverArrowDirection constants to specify arrow location on popover.
379379

380-
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
380+
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
381381
**Properties**
382382

383383
| Name | Type | Default |
384384
| --- | --- | --- |
385-
| ARROW_UP | <code>number</code> | <code>1</code> |
386-
| ARROW_DOWN | <code>number</code> | <code>2</code> |
387-
| ARROW_LEFT | <code>number</code> | <code>4</code> |
388-
| ARROW_RIGHT | <code>number</code> | <code>8</code> |
389-
| ARROW_ANY | <code>number</code> | <code>15</code> |
385+
| ARROW_UP | <code>number</code> | <code>1</code> |
386+
| ARROW_DOWN | <code>number</code> | <code>2</code> |
387+
| ARROW_LEFT | <code>number</code> | <code>4</code> |
388+
| ARROW_RIGHT | <code>number</code> | <code>8</code> |
389+
| ARROW_ANY | <code>number</code> | <code>15</code> |
390390

391391
<a name="module_Camera.Direction"></a>
392392

393393
### Camera.Direction : <code>enum</code>
394-
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
394+
**Kind**: static enum property of <code>[Camera](#module_Camera)</code>
395395
**Properties**
396396

397397
| Name | Type | Default | Description |
@@ -434,7 +434,7 @@ __Supported Platforms__
434434

435435
- iOS
436436

437-
**Example**
437+
**Example**
438438
```js
439439
navigator.camera.getPicture(onSuccess, onFail,
440440
{
@@ -708,11 +708,11 @@ function getFileEntry(imgUri) {
708708
window.resolveLocalFileSystemURL(cordova.file.dataDirectory, function (dataDirectoryEntry) {
709709
fileEntry.copyTo(dataDirectoryEntry, "profilePic", onSuccess, onError);
710710
}, onError);
711-
711+
712712
// Example 2: Upload it!
713713
fileEntry.file(function (file) {
714714
var reader = new FileReader();
715-
715+
716716
reader.onloadend = function() {
717717
var xhr = new XMLHttpRequest();
718718
xhr.open('POST', 'https://myserver.com/upload');

0 commit comments

Comments
 (0)