Skip to content

Improved animation merging for layout and traces #1041

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 9 commits into from
Oct 17, 2016
Prev Previous commit
Next Next commit
Add missing layout container arrays
  • Loading branch information
rreusser committed Oct 17, 2016
commit adee9b291ed07bf94e5aabed760135c90b5a2c55
5 changes: 4 additions & 1 deletion src/plots/plots.js
Original file line number Diff line number Diff line change
Expand Up @@ -1447,7 +1447,10 @@ plots.extendTrace = function(destTrace, srcTrace) {
plots.extendLayout = function(destLayout, srcLayout) {
return plots.extendObjectWithContainers(destLayout, srcLayout, [
'annotations',
'shapes'
'shapes',
'images',
'sliders',
'updatemenus'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

]);
};

Expand Down