mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-14 08:57:53 -05:00
19 lines
450 B
JavaScript
19 lines
450 B
JavaScript
/**
|
|
* Phonegap Wikitude AR Camera plugin
|
|
* Copyright (c) Spletart 2011
|
|
*/
|
|
var WikitudeCamera = function() {
|
|
|
|
}
|
|
|
|
WikitudeCamera.prototype.show = function(data, success, fail, options) {
|
|
return cordova.exec(function(args) {
|
|
success(args);
|
|
}, function(args) {
|
|
fail(args);
|
|
}, 'WikitudeCamera', 'show', [data, options]);
|
|
};
|
|
|
|
cordova.addConstructor(function() {
|
|
cordova.addPlugin('wikitudeCamera', new WikitudeCamera());
|
|
}); |