I noticed a problem with the url shim - if you call e.g. selection.style("cursor") as an accessor, this gets translated by the shim into selection.style("cursor", null) which then actually modifies the value.
This particularly causes problems for the brush examples - the cursor styles disappear.
This should fix it - let me know if you need any more tests/explanation, etc.
Hi,
I noticed a problem with the url shim - if you call e.g.
selection.style("cursor")
as an accessor, this gets translated by the shim intoselection.style("cursor", null)
which then actually modifies the value.This particularly causes problems for the brush examples - the cursor styles disappear.
This should fix it - let me know if you need any more tests/explanation, etc.
Thanks for the project!