Skip to content

Commit

Permalink
switch to lowercase 'plotly' require.js dependency (#4640)
Browse files Browse the repository at this point in the history
consistent with plotly.py and PlotlyJS.jl
  • Loading branch information
marius311 authored Jan 24, 2023
1 parent 2eb315f commit 54a215f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backends/plotly.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1071,10 +1071,10 @@ function plotly_html_body(plt, style = nothing)
requirejs_prefix = """
requirejs.config({
paths: {
Plotly: '$(plotly_no_ext)'
plotly: '$(plotly_no_ext)'
}
});
require(['Plotly'], function (Plotly) {
require(['plotly'], function (Plotly) {
"""
requirejs_suffix = "});"
end
Expand Down

0 comments on commit 54a215f

Please sign in to comment.