Duncan

Results 4 comments of Duncan

Tried with a nginx proxy instead of Kong, and it works fine, the client socket connection stays without being closed. Nginx configuration: ```bash upstream websocket { server 192.168.99.100:8083; } server...

@thibaultcha Do we have any updates on this issue? I like Kong, but due to this error I'm temporary switching to pure Nginx now.

Well I've firgured this out. Method "setNewImageSource" which checks for image rotation caused this. Add an onload handler fixed this problem.

@brianfeister I replaced method from line 1549 of compile/unminified/ng-img-crop.js with below: ``` this.setNewImageSource=function(imageSource) { image=null; resetCropHost(); events.trigger('image-updated'); if(!!imageSource) { var newImage = new Image(); if(imageSource.substring(0,4).toLowerCase()==='http') { newImage.crossOrigin = 'anonymous'; }...