mirror of
https://github.com/Hopiu/bleuguide.git
synced 2026-03-17 01:30:23 +00:00
14 lines
No EOL
226 B
JavaScript
14 lines
No EOL
226 B
JavaScript
var blapp = angular.module( 'blapp', [] );
|
|
|
|
blapp.controller( 'blappCtrl', function ($scope) {
|
|
$scope.bleus = [
|
|
{
|
|
'name': 'Restaurant Sonne',
|
|
'rating': 5.6
|
|
},
|
|
{
|
|
'name': 'Eintracht',
|
|
'rating': 3.4
|
|
}
|
|
];
|
|
}); |