Files
ionic-framework/test/controllers/route.html
2013-11-22 08:42:20 -06:00

36 lines
848 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>Route Controller</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="../dist/ionic.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Routes</h1>
</header>
<main class="has-header content">
<a href="cats/">Cats</a>
</main>
</section>
<script src="RouteController.js"></script>
<script>
var rc = new RouteViewController({
root: 'hacking/'
});
rc.when('route.html', function() {
console.log('Loaded');
});
rc.when('cats', function() {
console.log('Loaded');
});
</script>
</body>
</html>