8000 Emit `plotly_relayouting` event during drag interactions by zhihua-chen · Pull Request #2606 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Emit plotly_relayouting event during drag interactions #2606

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

Closed
Prev Previous commit
Next Next commit
fix semicolon
  • Loading branch information
zhihua-chen committed May 28, 2018
commit a4c7ab0bb7da7d700d6128acf6c00c56a7e51459
2 changes: 1 addition & 1 deletion src/plots/ternary/ternary.js
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ proto.initInteractions = function() {

function dragDone() {
var attrs = {};
computeDragUpdates(attrs)
computeDragUpdates(attrs);
Registry.call('relayout', gd, attrs);
}

Expand Down
0