I just tried Version 2, but I still get the js error.
I get jquery and jquery.migrate loaded into the header, which I'd like to avoid whether its version 1 or 2 and whether load scripts in footer is checked or not. Jquery cycle and rotating tweets appear above my script, I can't figure out how to get mine above them.
<script type='text/javascript' src='http://dpa.dev/wp-content/plugins/rotatingtweets/js/jquery.cycle2.renamed.js'></script>
<script type='text/javascript' src='http://dpa.dev/wp-content/plugins/rotatingtweets/js/jquery.cycle2.scrollVert.renamed.js'></script>
<script type='text/javascript' src='http://dpa.dev/wp-content/plugins/rotatingtweets/js/jquery.cycle2.carousel.renamed.js'></script>
<script type='text/javascript' src='http://dpa.dev/wp-content/plugins/rotatingtweets/js/rotatingtweets_v2.js'></script>
<script type='text/javascript' src='http://dpa.dev/wp-includes/js/admin-bar.min.js'></script>
<script type='text/javascript' src='http://dpa.dev/wp-content/themes/dpa/assets/js/build/production.min.js'></script>
However, I just tried your development version and it fixed the issue. Thanks!
I managed to get jquery to stop loading by using this answer.
I'd suggest adding in a minified version of your script in your plugin, and maybe trying to get all of the js into one file. At the moment it's loading 4 js files which is 4 (unminified) HTTP requests:
<script type='text/javascript' src='http://dpa.dev/wp-content/plugins/rotatingtweets/js/jquery.cycle2.renamed.js'></script>
<script type='text/javascript' src='http://dpa.dev/wp-content/plugins/rotatingtweets/js/jquery.cycle2.scrollVert.renamed.js'></script>
<script type='text/javascript' src='http://dpa.dev/wp-content/plugins/rotatingtweets/js/jquery.cycle2.carousel.renamed.js'></script>
<script type='text/javascript' src='http://dpa.dev/wp-content/plugins/rotatingtweets/js/rotatingtweets_v2.js'></script>
Thanks for the help!