I solved the issues…
Follow this way if you wanna fix for mobile devices…
Go to in your FTP and then wp-content > plugins > swiftninjapro-inspect-element-console-blocker > assets
Now in assets folder, you’ll see 5 JS items.
and all those JS you need to modify to fix mobile issue.
But very simple..
You can simply wrap with this code in every single JS file
if (window.screen.width > 780) {
// put the js orgianl codes here
}
If you do that, then js will not load in mobile devices. Then will work perfectly!