Larry Davis
Larry Davis
@georgkoester, any thoughts on the two branches I pushed?
@georgkoester if this is looking right to you, let's merge this and release a new version of DOMly.
Apologies for the issue reference barf due to all the rebasing, performance statistics are in for the various branches I've put together to close this issue. Note that the output...
DOMly uses the following DOM methods and properties: - [`document.createComment()`](https://msdn.microsoft.com/en-us/library/ie/ms536383%28v=vs.85%29.aspx) - All browsers - [`document.createDocumentFragment()`](https://developer.mozilla.org/en-US/docs/Web/API/document.createDocumentFragment#Browser_compatibility) - All browsers - [`Element.setAttribute()`](https://developer.mozilla.org/en-US/docs/Web/API/Element.setAttribute) - All browsers - [`Node.appendChild()`](https://developer.mozilla.org/en-US/docs/Web/API/Node.appendChild) - All browsers - [`Node.cloneNode()`](http://quirksmode.org/dom/core/)...
@gka thanks for the reply. I understand the reason for the `s: 1, v:0` transformation. I tested 1.4.x of Chroma and found the same issues, but I did not test...
Paths to modules may be different for various developers on the same project, so we won't be checking `workspace.json` into project repositories, otherwise it would make sense to use `npm-workspace`...
Yes, that's exactly what we're trying to do.
Definitely just an alternative workflow, `npm-workspace`'s default workflow is very usable. It's just using `npm-workspace` to install peer dependencies of linked modules, solving the basic problem that happens when you...
@bnolan, did you end up getting HACD to work with Cannon?
@appsforartists, this is more complex than your code sample lets on. Let's say you do this: ``` js var myElement = document.createElement('div'); var handleClick = function(event) { console.log('Clicked!'); }; //...