Skip to content

Commit f9d4fc7

Browse files
Added link to demos folder on the index page in case the redirect fails.
1 parent 7f4f286 commit f9d4fc7

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

index.php

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,43 @@
66
<!-- Need to get a proper redirect hooked up. Blech. -->
77
<meta http-equiv="refresh" content="0;url=demos/">
88
<meta name="robots" content="noindex, follow">
9+
10+
<meta name="viewport" content="width=device-width, initial-scale=1">
11+
<title>jQuery Mobile</title>
12+
<link rel="stylesheet" href="css/themes/default/jquery.mobile.css">
13+
<link rel="stylesheet" href="demos/_assets/css/jqm-demos.css">
14+
<link rel="shortcut icon" href="demos/_assets/favicon.ico">
15+
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,700">
16+
<script src="js/jquery.js"></script>
17+
<script src="demos/_assets/js/"></script>
18+
<script src="js/"></script>
19+
<script>
20+
$( document ).on( "pageshow", function(){
21+
$( "p.message" ).addClass( "show" );
22+
});
23+
</script>
24+
<style>
25+
p.message {
26+
opacity: 0;
27+
-webkit-transition: opacity 250ms ease 2s;
28+
-moz-transition: opacity 250ms ease 2s;
29+
-o-transition: opacity 250ms ease 2s;
30+
transition: opacity 250ms ease 2s;
31+
}
32+
p.message.show {
33+
opacity: 1;
34+
}
35+
</style>
936
</head>
1037
<body>
38+
<div data-role="page" class="jqm-demos">
39+
40+
<div data-role="content" class="jqm-content">
41+
42+
<p class="message">Nothing to see here folks. <a href="demos/">View the demo center home page &rarr;</a></p>
43+
44+
</div><!-- /content -->
45+
46+
</div><!-- /page -->
47+
</body>
1148
</html>

0 commit comments

Comments
 (0)