Martin Splitt
Martin Splitt
Looks like three.js r94 removed them. They're still [present in r93](https://github.com/mrdoob/three.js/tree/r93/examples/js/controls). I'm not actively maintaining this project anymore, so I'm not sure what's the right way to make a controller...
I see a use case for that, when bind.js is used in a larger application, but you could still set the value programmatically in your example: Instead of `$('.name').val('tyler');` you...
we could infer from the `src` attribute that it's a glTF and do some superficial parsing to extract the assets and preload 'em so they're at least in the browser...
I'd love to work on bringing Webauthn to WP :)
Making progress, slowly but steadily :)
@guoguo12 You're right about the glitch with the text node, but the event still doesn't fire. ``` javascript var element = $.create("div", { class: "parent", contents: "This is the parent"...
Yes. It's weird, isn't it? Here's yet another sample of what works: ``` html Click me var original = document.getElementById("test"); original._.delegate("click", "p", function() { alert("OK"); }) var clone = $.clone(original);...
@zdfs I don't see how that matters here? The only `` elements are the one in the original element and in the clone. `clone.querySelector` only matches on the descendants of...
No worries, I just wanted to make sure I'm not missing the elephant in the room ;-)
@zdfs Yes, that, too, works in a normal page but not in Karma... what the heck?