/* Copyright 2013 appPlant UG Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ var Printer = function () { }; Printer.prototype = { /** * Überprüft, ob der Drucker-Dienst verfügbar ist. * * @param {Function} callback * @param {Object?} scope callback scope (default: window) * * @return {Boolean} */ isServiceAvailable: function (callback, scope) { var callbackFn = function () { var args = typeof arguments[0] == 'boolean' ? arguments : arguments[0]; callback.apply(scope || window, args); }; if (device.platform == 'Android' && device.version >= '4.4') { cordova.exec(callbackFn, null, 'KitKatPrinter', 'isServiceAvailable', []); } else { cordova.exec(callbackFn, null, 'Printer', 'isServiceAvailable', []); }; }, /** * Übergibt den HTML-Content an den Drucker-Dienst. * * @param {String} content HTML string or DOM node (if latter, innerHTML is used to get the contents) * @param {Object?} options platform specific options */ print: function (content, options) { var page = content.innerHTML || content, options = options || {}; if (typeof page != 'string') { console.log('Print function requires an HTML string. Not an object'); return; } if (device.platform == 'Android' && device.version >= '4.4') { cordova.exec(null, null, 'KitKatPrinter', 'print', [page, options]); } else { cordova.exec(null, null, 'Printer', 'print', [page, options]); }; } }; var plugin = new Printer(); module.exports = plugin;