8000 Fix setting tickwidth, tickcolor, ticklen, linecolor and possibly more attributes via template by archmoj · Pull Request #4904 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content
8000

Fix setting tickwidth, tickcolor, ticklen, linecolor and possibly more attributes via template #4904

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jun 17, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
reduce condition checks
  • Loading branch information
archmoj committed Jun 8, 2020
commit 57cec14677eaba0619ca00adc972c6c62e18e926
4 changes: 1 addition & 3 deletions src/lib/coerce.js
Original file line number Diff line number Diff line change
Expand Up @@ -420,11 +420,9 @@ function _coerce(containerIn, containerOut, attributes, attribute, dflt) {
exports.coerce2 = function(containerIn, containerOut, attributes, attribute, dflt) {
var out = _coerce(containerIn, containerOut, attributes, attribute, dflt);
var valOut = out.value;
var theDefault = out.default;
if(
valOut !== undefined &&
theDefault !== undefined &&
theDefault !== valOut
valOut !== out.default
) {
return valOut;
}
Expand Down
0