Check out my code snippet here: JSFiddle
I have set up my panels to be hidden initially, and I want them to expand with equal height when a button is clicked. Thank you in advance for any assistance!
var app = angular.module("myApp", []).controller("myCtrl", function($scope) {
$scope.isActive = false;
$scope.toggle = function () {
$scope.isActive = !$scope.isActive;
};
});