I transferred the script from home.html to index.html and deleted the ng-app attribute from home.html.
<script>
app = angular.module('ui.bootstrap.demo', ['ui.bootstrap']);
angular.module('ui.bootstrap.demo').controller('TabsDemoCtrl', function ($scope, $window) {
$scope.tabs = [
{ title:'Home', content:'home content', url:'home.html' },
{ title:'Manage Users', content:'Manage Users content', url:'manageUsers.html'},
{ title:'Manage Configuration', content:'Manage Configuration content', url:'manageConfiguration.html'},
{ title:'Manage Server', content:'Manage Server content' , url:'manageServer.html'},
{ title:'Manage Audit', content:'Manage Audit content', url:'manageAudit.html'},
];
});
app.controller('personCtrl', function($scope) {
$scope.firstName = "John",
$scope.lastName = "Doe"
$scope.myVar = false;
$scope.toggle = function() {
$scope.myVar = !$scope.myVar;
}
});
</script>
Apologies for my previous nonsensical response.
Check out the Updated Plunker with Functional Code