mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
22 lines
691 B
HTML
22 lines
691 B
HTML
<!doctype html>
|
|
<html xmlns:ng="http://angularjs.org" ng:app>
|
|
<head>
|
|
<title>angular dev sandbox</title>
|
|
<script src="../src/angular-bootstrap.js"></script>
|
|
<script>
|
|
angular.module.ng('routeConfig', function($route) {
|
|
$route.when('/view1', {controller: MyCtrl, template: 'view1.html'});
|
|
$route.when('/view2', {controller: MyCtrl, template: 'view2.html'});
|
|
|
|
function MyCtrl() {};
|
|
}, {$inject: ['$route']});
|
|
</script>
|
|
</head>
|
|
<body ng:init="$service('$window').$root = this">
|
|
<p>
|
|
<a href="#/view1">view1</a> | <a href="#/view2">view2</a> | <a href="#">blank</a>
|
|
</p>
|
|
|
|
view: <ng:view></ng:view>
|
|
</body>
|
|
</html>
|