I have built a site using AngularJS 1.2.9 which is being added into a client's website as a block in the body via a CMS. I have no control over the header of the page and they are using an old version of jQuery (1.6).
As Angular by default uses jQuery if it detects it is loaded in the DOM I am getting element not defined
errors for the element references in the compile link functions etc.
I need to find a way of stopping Angular from using jQuery and instead just defaulting to using the default jqLite. A weird request I know but I don't have any control over the header scripts and the page is throwing errors for all the selector code. I found this in the AngularJS docs for 1.2
Angular 1.2 only operates with jQuery 1.7.1 or above.
So I assume this error is caused by the older 1.6 version of jQuery being loaded in.
So my question is:
Is there a way to manually tell AngularJS NOT to use jQuery during bootstrapping?