Remove legacy stuff from DndUtil
See original GitHub issueA couple of things noticed in the DndUtil class:
public static final String DND_CONNECTOR_COMPATIBILITY = "frontend://dndConnector.js";
private static final String MOBILE_DND_POLYFILL_URL = "context://webjars/mobile-drag-drop/2.3.0-rc.1/index.min.js";
private static final String VAADIN_MOBILE_DND_POLYFILL_URL = "context://webjars/vaadin__vaadin-mobile-drag-drop/1.0.0/index.min.js";
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Removing legacy domain controllers from sites and services
Hi. Just a quick question. I was at a client site and noticed that in AD sites and services there were lots of...
Read more >How to remove Legacy content? - D&D Beyond Forums
Is there a way to turn off or remove legacy content?
Read more >Can't access anything on the 10.43.xx range #1247 - GitHub
I just cleared out the cluster and did k3s-uninstall.sh on all nodes. Then I did the following and rebooted to make sure there...
Read more >Linux 101: How to remove legacy communication services
One thing you can do with Linux is remove the legacy communications services that can be installed by default, even though they are...
Read more >Appendix B. Release Notes - NixOS
The iputils package, which is installed by default, no longer provides the legacy tools tftpd and traceroute6 . More tools ( ninfod ,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @Tonne-TM, thanks for the feedback, I just checked the source code, there is no more
frontend://dndConnector.js
in the source code. Have you tried to clean the project? delete node_modules, package.json, package-lock.json, target etc.I think the original forum post could have been included here - as it had the context to the issue and logs about what might be going wrong. IIRC it said that something tried to load
"frontend://dndConnector.js"
and that a) should not happen and b) cannot work Flow 3 onwards.The constant
DND_CONNECTOR_COMPATIBILITY
should be removed and not used at all as it is for ES5 browsers, that are not supported starting from v15. As Leif says, the mobile dnd polyfill is a different thing, and I don’t think it had anything to do with the error the user had.