I have two javascript libraries: interact.js and sortable.js, the first is used to resize html elements like div, the second is used to order html elements in screen like a list.
Libraries works fine in Chrome and Edge but in Firefox sortable.js is working and interact.js is not working, if i change to touch simulation mode in Firefox (like tablet touch screen) now interact.js is working and sotable.js not (reverse effect).
Firefox developer console shows nothing, i have no clue about a possible error or debug information.
I would like to know:
- Is there any software tool or browser developer tools option to
visualize any library conflict or firefox diference compared with
chrome ? in order to detect and solve this issue. - Why Firefox manage methods not exactly like Chrome ?, what could be happen in this case ?
- There is probably a click conflict since we use click to drag element and order in the list (sortable.js) and the same click in corner to resize elements (interact.js), how can i get debug information from this in order to solve in Firefox ???
Regards