Fixed: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/575cebe9
On Tue, Jun 12, 2012 at 3:01 PM, Shazron <[email protected]> wrote: > Yeah the last I read the readme was over a month ago, didn't know it > changed. Installing, fixing > > On Tue, Jun 12, 2012 at 2:59 PM, Filip Maj <[email protected]> wrote: >> Yeah complaining on my end too. >> >> I don¹t think you have jshint installed globally with npm >> >> On 6/12/12 2:53 PM, "Anis KADRI" <[email protected]> wrote: >> >>>It's complaining on Windows :-/ >>> >>>On Tue, Jun 12, 2012 at 2:45 PM, Shazron <[email protected]> wrote: >>> >>>> funny, I ran jake with no errors/warnings? >>>> >>>> On Tue, Jun 12, 2012 at 2:40 PM, Anis KADRI <[email protected]> >>>>wrote: >>>> > You forgot the semi-colon after cameraExport.cleanup and Jake is >>>> > complaining :-P. >>>> > >>>> > On Tue, Jun 12, 2012 at 11:58 AM, <[email protected]> wrote: >>>> > >>>> >> Updated Branches: >>>> >> refs/heads/master 27e83f748 -> 38032ba77 >>>> >> >>>> >> >>>> >> Added 1.8.1 cordova-js >>>> >> >>>> >> >>>> >> Project: >>>> http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo >>>> >> Commit: >>>> >> >>>> >>>>http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/38032 >>>>ba7 >>>> >> Tree: >>>> >> >>>> >>>>http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/38032ba >>>>7 >>>> >> Diff: >>>> >> >>>> >>>>http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/38032ba >>>>7 >>>> >> >>>> >> Branch: refs/heads/master >>>> >> Commit: 38032ba77f3045bd3b50396067248b5b3bc62965 >>>> >> Parents: 27e83f7 >>>> >> Author: Shazron Abdullah <[email protected]> >>>> >> Authored: Tue Jun 12 11:58:04 2012 -0700 >>>> >> Committer: Shazron Abdullah <[email protected]> >>>> >> Committed: Tue Jun 12 11:58:04 2012 -0700 >>>> >> >>>> >> >>>>---------------------------------------------------------------------- >>>> >> CordovaLib/javascript/cordova.ios.js | 10 ++++++++-- >>>> >> 1 files changed, 8 insertions(+), 2 deletions(-) >>>> >> >>>>---------------------------------------------------------------------- >>>> >> >>>> >> >>>> >> >>>> >> >>>> >>>>http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/38032ba >>>>7/CordovaLib/javascript/cordova.ios.js >>>> >> >>>>---------------------------------------------------------------------- >>>> >> diff --git a/CordovaLib/javascript/cordova.ios.js >>>> >> b/CordovaLib/javascript/cordova.ios.js >>>> >> index d9cced7..b72a0cd 100644 >>>> >> --- a/CordovaLib/javascript/cordova.ios.js >>>> >> +++ b/CordovaLib/javascript/cordova.ios.js >>>> >> @@ -1,6 +1,6 @@ >>>> >> -// commit 109b8649b0e98597b147842a6f71999d2f7910f2 >>>> >> +// commit 722ce5820b6fc3e371245927e00c7f9745eb041a >>>> >> >>>> >> -// File generated at :: Tue Jun 05 2012 14:10:19 GMT-0700 (PDT) >>>> >> +// File generated at :: Tue Jun 12 2012 11:22:08 GMT-0700 (PDT) >>>> >> >>>> >> /* >>>> >> Licensed to the Apache Software Foundation (ASF) under one >>>> >> @@ -1202,6 +1202,10 @@ cameraExport.getPicture = >>>> function(successCallback, >>>> >> errorCallback, options) { >>>> >> exec(successCallback, errorCallback, "Camera", "takePicture", >>>> >> [quality, destinationType, sourceType, targetWidth, targetHeight, >>>> >> encodingType, mediaType, allowEdit, correctOrientation, >>>> saveToPhotoAlbum, >>>> >> popoverOptions]); >>>> >> }; >>>> >> >>>> >> +cameraExport.cleanup = function(successCallback, errorCallback) { >>>> >> + exec(successCallback, errorCallback, "Camera", "cleanup", []); >>>> >> +} >>>> >> + >>>> >> module.exports = cameraExport; >>>> >> }); >>>> >> >>>> >> @@ -2509,6 +2513,8 @@ var DirectoryEntry = >>>> >> require('cordova/plugin/DirectoryEntry'); >>>> >> var FileSystem = function(name, root) { >>>> >> this.name = name || null; >>>> >> if (root) { >>>> >> + console.log('root.name ' + name); >>>> >> + console.log('root.root ' + root); >>>> >> this.root = new DirectoryEntry(root.name, root.fullPath); >>>> >> } >>>> >> }; >>>> >> >>>> >> >>>> >>
