DocumentServer/OfficeWeb/3rdparty/touch/index.html
nikolay ivanov a8be6b9e72 init repo
2014-07-05 18:22:49 +00:00

19 lines
523 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="1;url=examples/">
<title>Welcome to Sencha Touch 2</title>
<script type="text/javascript">
var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
if (mobile) {
window.location = "examples/";
} else {
window.location = "docs/";
}
</script>
</head>
<body></body>
</html>