cordova-plugin-printer/www/printer.js
Sebastián Katzer 5ef59a69ed Release v0.5.1
2013-12-15 11:16:18 +01:00

66 lines
2.1 KiB
JavaScript
Executable File

/*
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);
};
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;
}
cordova.exec(null, null, 'Printer', 'print', [page, options]);
}
};
var plugin = new Printer();
module.exports = plugin;