UNPKG

thalassa-consul

Version:
22 lines (18 loc) 457 B
function AccordionDemoCtrl($scope) { $scope.oneAtATime = true; $scope.groups = [ { title: "Dynamic Group Header - 1", content: "Dynamic Group Body - 1" }, { title: "Dynamic Group Header - 2", content: "Dynamic Group Body - 2" } ]; $scope.items = ['Item 1', 'Item 2', 'Item 3']; $scope.addItem = function() { var newItemNo = $scope.items.length + 1; $scope.items.push('Item ' + newItemNo); }; }