Hi @mary5 , We can integrate AngularJS module by using the custom component and bootstrapping the AngularJS module as shown in the following example. Give kudos if you find my posts helpful or mark solution if it answers your query < div li-bindable id = "testContrlApp" ng-controller = "testContrl" > Angular Test </ div > < @liaAddScript angular="true"> ;(function (angular) { /*---------------------------------------------------------------------------------------------------------------------*/ /* Registering the app with Lithium Angualr App-----------------------------------------------------------------------*/ /* NOTE: Atleast one OOTB Angular component like Header/Footer is required in order to run Angular with LiaAddScript */ /*------------------------------------------------------------------------------------------------------------------*/ var coreModuleDeps = LITHIUM.AngularSupport.getOptions().coreModuleDeps || []; coreModuleDeps.push('testContrlApp'); LITHIUM.AngularSupport.setOptions({ coreModuleDeps: coreModuleDeps }); angular.module('testContrlApp',[]) .config(['$httpProvider', function ($httpProvider) { /* Executing */ console.log("Going into Connfig"); }]) .controller('testContrl',function($scope){ /* Controller */ /* Not Executing */ alert("This is angualr code from controller") }); })(LITHIUM.angular); < /@liaAddScript>
... View more