pageRouteInit.push(function ($routeProvider, $locationProvider) {
var tpl = '
Bar
Welcome to the bar.
';
tpl += '
';
tpl += 'Chair | Person | Drinking |
';
tpl += 'seat 1 | empty | none |
';
tpl += 'seat 2 | you | coffee |
';
tpl += 'seat 3 | cat | water |
';
tpl += '
';
$routeProvider.when('/example-ui/bar', {
template: tpl,
controller: PageFoo
});
});
function PageFoo($scope, $http) {
}