From 65f7380332be69244652b16257f7834a0fb6a84c Mon Sep 17 00:00:00 2001 From: Christophe Boucaut Date: Fri, 31 Oct 2014 17:02:45 +0100 Subject: [PATCH] Mise en place de la structure pour la partie js. --- www/customCamera.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 www/customCamera.js diff --git a/www/customCamera.js b/www/customCamera.js new file mode 100644 index 0000000..c96f2f3 --- /dev/null +++ b/www/customCamera.js @@ -0,0 +1,18 @@ +/** + * Permet de faire l'interface entre phonegap et l'application customcamera en java. + */ + +'use strict'; + +var exec = require('cordova/exec'); + +// constructor. +var customCameraExport = function() { +}; + +// add method. +customCameraExport.prototype.jesaispasquoionverra = function() { + +}; + +module.exports = new customCameraExport(); \ No newline at end of file