Paul M. Christian

Results 9 comments of Paul M. Christian

I just ran into this. To fix it, in createCanvas: change ``` this.el.object3D.material = new THREE.MeshBasicMaterial(); this.el.object3D.material.map = this.texture; ``` to ``` this.el.object3D.children[0].material = new THREE.MeshBasicMaterial(); this.el.object3D.children[0].material.map = this.texture; ```

I believe this is the issue https://github.com/clauderic/react-infinite-calendar/blob/master/src/Years/index.js#L53 and https://github.com/clauderic/react-infinite-calendar/blob/master/src/utils/index.js#L160 If the selected date is out of range for the month, the next month is returned.

@leron8 I've had a PR open for 8 months. https://github.com/clauderic/react-infinite-calendar/issues/150 It fixes the issue.

@leron8 Yes, I believe that's the only thing you can do until it's merged and published. If you want, feel free to use my fork by adding this to your...

`new Date(2017, 1, 28)` Tue Feb 28 2017 00:00:00 GMT-0600 (Central Standard Time) `new Date(2017, 1, 31)` Fri Mar 03 2017 00:00:00 GMT-0600 (Central Standard Time) If the day passed...

@marichuya are you on Windows?

I'll add that I don't care about it being added to the database. I just expect to be able to drag a file or files or folder from my filesystem...

> but by perimeter of the max-chroma quadrilateral Is there a way to do that with the current API?