-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Open
Description
We have developed our own custom widget that displays a map inside of a Jupyter Notebook. As part of that widget development, we use require.js for a few things. Prior to Notebooks 5.x, this has worked as expected. However, with Notebooks 5.1/5.2, we are now seeing poorly formed calls. For example, require.js used to make a call like the following:
http://js.arcgis.com/3.17amd/dijit/form/templates/TextBox.html?client=gsrs
And this works. However, with no changes in our Notebook widget call, the call now looks like:
http://js.arcgis.com/3.17amd/dijit/form/templates/TextBox.html.js?client=gsrs
It has appended a .js
to the path. Has anyone seen this before? Can any suggest why this might be happening with the newer Notebook versions?