-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaders.html
More file actions
25 lines (24 loc) · 1006 Bytes
/
headers.html
File metadata and controls
25 lines (24 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!--
Copyright (c) Microsoft Corporation. All rights reserved
-->
<!DOCTYPE html>
<html>
<head>
<title>WinJS Hub sample - Interactive headers</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link href="http://cdnjs.cloudflare.com/ajax/libs/winjs/4.1.0/css/ui-dark.css" rel="stylesheet" />
<script src="http://cdnjs.cloudflare.com/ajax/libs/winjs/4.1.0/js/base.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/winjs/4.1.0/js/ui.js"></script>
<script src="navigator.js"></script>
<script>
WinJS.Utilities.ready(function () {
WinJS.UI.processAll().then(function () {
WinJS.Navigation.navigate(Application.navigator.home);
});
});
</script>
</head>
<body class="win-type-body">
<div data-win-control="Application.PageControlNavigator" data-win-options="{ home: 'pages/interactiveheaders/interactiveheaders.html' }"></div>
</body>
</html>