Sign in
android
/
platform
/
external
/
cherry
/
main
/
.
/
third_party
/
angular
/
docs
/
examples
/
example-multi-bootstrap
/
controller.js
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
]];
});