In the browser window, you'll have access to the browser Javascript developer tools. The first problem you'll encounter is:
bundle.js:94044 Uncaught ReferenceError: $ is not defined
at Object.<anonymous> (bundle.js:94044)
at __webpack_require__ (bundle.js:20)
at bundle.js:66
at bundle.js:69
This should be simple to fix by not using $ and instead import as jQuery:
jQuery = require('jquery'); // Instead of $ = require('jquery');
Then things will get complicated. I think I tracked the problem to cytoscape, but with no idea how to fix:
ctr might be a jQuery object here, I'm not sure what it should be normally. The error is related to ctr.className being undefined and indexOf() not existing.
Reference to this issue: https://github.com/ramnathv/htmlwidgets/issues/321
One part in the debugging is clicking the open icon marked with the red box:
after running this:
In the browser window, you'll have access to the browser Javascript developer tools. The first problem you'll encounter is:
This should be simple to fix by not using $ and instead import as jQuery:
Then things will get complicated. I think I tracked the problem to cytoscape, but with no idea how to fix:
ctr might be a jQuery object here, I'm not sure what it should be normally. The error is related to ctr.className being undefined and indexOf() not existing.