diff options
Diffstat (limited to 'app/photos')
-rw-r--r-- | app/photos/static/image-preview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/photos/static/image-preview.js b/app/photos/static/image-preview.js index 277def3..b46dbd8 100644 --- a/app/photos/static/image-preview.js +++ b/app/photos/static/image-preview.js @@ -15,7 +15,7 @@ function build_image_preview () { request.onload = function() { if (request.status >= 200 && request.status < 400) { var data = JSON.parse(request.responseText); - console.log(data); + //console.log(data); img.src = data['url']; } else { console.log("server error"); |