From 1c5b0314e76d73d3f492a4c4c41f1703d9b3f9b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Katzer?= Date: Mon, 13 Oct 2014 23:32:32 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 96c2ad1..877dc06 100644 --- a/README.md +++ b/README.md @@ -165,7 +165,7 @@ The method takes a string or a HTML DOM node. The string can contain HTML conten | duplex | Specifies the duplex mode to use for the print job.
Either double-sided (duplex:true) or single-sided (duplex:false).
Double-sided by default. | Boolean | iOS | | landscape| The orientation of the printed content, portrait or landscape.
_Portrait_ by default. | Boolean | all | | graystyle | If your application only prints black text, setting this property to _true_ can result in better performance in many cases.
_False_ by default. | Boolean | all | -| bounds | The Size & position of the print view | Array | iPad | +| bounds | The Size and position of the print view | Array | iPad | #### Further informations - See the [isAvailable][available] method to find out if printing is available on the device. @@ -243,7 +243,7 @@ cordova.plugins.printer.print('123', { name:'Document.html', landscape:true }, f // Option one cordova.plugins.printer.print('123', { bounds:[40, 30, 0, 0] }); // Option two -cordova.plugins.printer.print('123', { bounds:{ left:40, top:30, width:0 height: 0} }); +cordova.plugins.printer.print('123', { bounds:{ left:40, top:30, width:0 height:0 } }); ```