Martin Beierling-Mutz

Results 29 comments of Martin Beierling-Mutz

@mds-charu you can set-up your Angular project as you're used to and just point to your app's entry point (e.g. the index.html of your built Angular app) in the manifest.xml....

@mds-charu your sample project is missing a manifest.xml file. Here is an example how your manifest.xml should look like: https://github.com/Adobe-CEP/CEP-Resources/blob/master/CEP_8.x/Samples/CEP_HTML_Test_Extension-8.0/CSXS/manifest.xml It also needs to be in the root/CSXS folder

You need to build your project using the `npm run build` command you already set-up in your `my-sample/package.json`. Then, in your manifest.xml change from: ``` ... ./my-sample/src/index.html ./Sample1.jsx ... ```...

btw: in the future it would be easier if you just create a quick repo with your project instead of using Dropbox. Then I could simply create a PR with...

any progress on this? I am currently working on a workaround to add parallaxing with this plugin by doing this: var xAmount = (this.mainLayer._scrollDelta.x \* this.driftAmountMain) / 1000; var yAmount...

okay, I forked the current version and will try to implement the scrolling feature.

isn't the correct way to use [the decorators prop ](https://github.com/alexcurtis/react-treebeard#decorators) to set your own Container component?

I really always would like to be able to customize without actually touching the source of a library. And the decorators prop appears to me as if it was intended...

@appsmehta I made it a codesandbox: [![Edit react-treebeard custom decorators](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/Q5AE9vG0?module=OygDp)