angularaviaryadobecreativesdk

aviary (adobe creative SDK) doesn't work properly with angular 2


I've created simple app with angular 2: http://plnkr.co/edit/OfjI0jCaZF5kHE45V4ur?p=preview

...
declare var Aviary: any;
...
this.featherEditor=new Aviary.Feather({
...

This working fine. But photos always flip vertically in editor when it appear. What I have to do?


Solution

  • Try adding the following property to your Aviary.Feather() configuration object:

    var editor = new Aviary.Feather({
        // ...
        disableWebGL: true
    });
    

    The flipping may be due to an outstanding issue related to Web GL support on Windows.