Fix wrong var name.

This commit is contained in:
Sebastián Katzer 2013-12-01 14:32:16 +01:00
parent 1461a69e6a
commit a9974c15d6

View File

@ -54,7 +54,7 @@ Function takes a callback function, passed to which is a boolean property. Optio
*/ */
window.plugin.printer.isServiceAvailable( window.plugin.printer.isServiceAvailable(
function (isAvailable) { function (isAvailable) {
alert(isavailable ? 'Service is available' : 'Service NOT available'); alert(isAvailable ? 'Service is available' : 'Service NOT available');
} }
); );
``` ```