Kevin LEVRON

Results 51 comments of Kevin LEVRON

Hello Problem is here (content is cloned to be put in cache) : https://github.com/defunkt/jquery-pjax/blob/master/jquery.pjax.js#L367 Tried without this line and it works. I didn't take time to dig more but it...

Juste tried (strings in cache), it works. Is there any reason to keep jquery objects in cache ? Strings in cache will consume less memory :-) but it could be...

https://github.com/defunkt/jquery-pjax/issues/453

Hello Sorry, didn't add description here since discussion is in the issue... About memory, don't have time to make a bench, but it's obvious, nodes will take more memory than...

I'll try to build a bench in the week. We could also add an option to chose cache type, what do you think ?

Little bench with more tags : http://jsperf.com/clone-vs-html-bench The difference is not so visible in chrome.

Thanks, can you revert [chore: build package](https://github.com/troisjs/trois/pull/189/commits/be6a15544c1ad8495b175aaecd8798528bafba84) so the PR is just about Mesh.ts

Thanks `setMaterial` won't be called with an array of materials : https://github.com/troisjs/trois/blob/master/src/materials/Material.ts#L50 I think it should be : ```ts setMaterial(material: Material) { if (Array.isArray(this.material)) { this.material.push(material) } else { if...

This could be easily done with data converter behavior, I wrote this kind of functionnality for Yii 1, it is really handy. There is a good sample of code about...

If it is included in core, it should not be done automatically by default.