I'm trying to follow this tutorial here: http://www.mattburkedev.com/multiple-angular-versions-on-the-same-page/
It works until I inject my widget into a page that already has includes AngularJS and is using ng-app
somewhere in the page. Both my version, and the existing version see the 'ng-app' and try to bootstrap it. The result is an error like:
Uncaught Error: [ng:btstrpd] App Already Bootstrapped with this Element '<div ng-app="myApp" class="ng-scope" ng-controller="IndexController">'
So my question is, is it possible to load in my version of Angular I need for my widget, and then tell it to not try and bootstrap anything automatically. I am handling it via:
angular.bootstrap(angular.element(appDiv), ['myWidget']);