HotTowel-Angular
HotTowel-Angular copied to clipboard
Errors out with jquery version > 2.1.1
I added an empty web app in VS 2015, installed HotTowel.Angular, upgraded all the packages except jquery- works fine meaning I can browse the index.html fine. As soon as I update jquery to any version higher than 2.1.1, I get an error. Has anybody seen this before? Thanks.
Hi @Rajiv-Kulkarni,
After upgrading jQuery you need to update index.html
's scripts references to point to the new version of jQuery.
<script src="scripts/jquery-2.1.1.js"></script>
will become
<script src="scripts/jquery-2.2.0.js"></script>