From 0d691ff80c6bab1db2e48bb490f047007faae3b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Katzer?= Date: Sun, 1 Dec 2013 14:39:59 +0100 Subject: [PATCH] Removed comments. --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index ee5f912..300524e 100644 --- a/README.md +++ b/README.md @@ -84,9 +84,6 @@ window.plugin.printer.print(page, function (code) { ### Get all available printing apps on Android The callback function will be called with a second argument which is an array, indicating which printer apps are available for printing. ```javascript -/* - * Find out if printing is available. Use this to find out which apps are available for printing. - */ window.plugin.printer.isServiceAvailable( function (isAvailable, installedAppIds) { alert('The following print apps are installed on your device: ' + installedAppIds.join(', ')); @@ -97,9 +94,6 @@ window.plugin.printer.isServiceAvailable( ### Specify printing app on Android An App-ID can be assigned as a platform configuration to indicate which 3rd party printing app shall be used. Otherwise the first found application will be used. ```javascript -/* - * Pass an HTML and - optionally - a platform specific configuration. - */ window.plugin.printer.print(page, null, this, { appId: 'epson.print' }); ```