Advertisement
Guest User

Untitled

a guest
May 6th, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function takePicture(){
  2.  
  3. navigator.camera.getPicture( cameraSuccess, cameraError, {
  4. quality: 50,
  5. destinationType: Camera.DestinationType.FILE_URI,
  6. correctOrientation: true,
  7. saveToPhotoAlbum: true
  8. });
  9.  
  10. }
  11.  
  12. function cameraSuccess(uri){
  13. //alert(uri);
  14. takePicture();
  15. }
  16.  
  17. function cameraError(message){
  18. alert("Canceled!");
  19. }
  20.  
  21. $('#ThumbnailTest_buttonTakePhotosNow').click(function(){
  22. takePicture();
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement