blob: 5f1ca61d1428a27bd7b9d373b73ff85e51d16599 [file]
var app = angular.module('multi-bootstrap', [])
.controller('BrokenTable', function($scope) {
$scope.headings = ['One', 'Two', 'Three'];
$scope.fillings = [[1, 2, 3], ['A', 'B', 'C'], [7, 8, 9]];
});