We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
plotly
Learn more about funding links in repositories.
Report abuse
2 parents bb79fda + 1483331 commit d9cf4a5Copy full SHA for d9cf4a5
test/image/strict-d3.js
@@ -32,10 +32,10 @@ selProto.style = function() {
32
33
if(sel.size()) {
34
if(typeof obj === 'string') {
35
- if(arguments.length === 1) {
+ if(arguments.length === 1 && !d3.event) {
36
throw new Error('d3 selection.style called as getter: ' +
37
- 'disallowed as it can fail for unattached elements. ' +
38
- 'Use node.style.attribute instead.');
+ 'disallowed outside event handlers as it can fail for ' +
+ 'unattached elements. Use node.style.attribute instead.');
39
}
40
checkStyleVal(sel, obj, arguments[1]);
41
} else {
0 commit comments