hi iam using angular Ui bootstrap http://angular-ui.github.io/bootstrap/. i have two qustions
i follow example given in angular-ui.github.io there they use
script src="http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.10.0.js"
but i dont want to use CDN so i downloaded angular ui and add it to my project. how to include it into my code? ya i did adding ['ui.bootstrap'] to my angular.module it is not working untill i add above script code.
im using < tabset > to create two tabs contacts and group. for example user is in group tab he wants to add memebers to a existing group so if he clicks the add member button i want to navigate to contacts tab automatically.
i thought to use document.getElementByTagName() inside my controller. will it works? and what is the Angular way to click something programmatically.