404 page fixes

This commit is contained in:
peteruithoven 2015-06-05 14:19:10 +02:00
parent a823c4cc25
commit 9a24230112
2 changed files with 6 additions and 6 deletions

View File

@ -65,7 +65,8 @@ define Package/doodle3d-client/install
$(CP) $(PKG_BUILD_DIR)/www/settings.html $(1)/www/ $(CP) $(PKG_BUILD_DIR)/www/settings.html $(1)/www/
$(CP) $(PKG_BUILD_DIR)/www/helpcontent.html $(1)/www/ $(CP) $(PKG_BUILD_DIR)/www/helpcontent.html $(1)/www/
$(CP) $(PKG_BUILD_DIR)/www/redirect.html $(1)/www/ $(CP) $(PKG_BUILD_DIR)/www/redirect.html $(1)/www/
$(CP) $(PKG_BUILD_DIR)/www/404.html $(1)/www/
$(CP) $(PKG_BUILD_DIR)/www/css/debug.min.css $(1)/www/css/ $(CP) $(PKG_BUILD_DIR)/www/css/debug.min.css $(1)/www/css/
$(CP) $(PKG_BUILD_DIR)/www/css/settings.min.css $(1)/www/css/ $(CP) $(PKG_BUILD_DIR)/www/css/settings.min.css $(1)/www/css/
$(CP) $(PKG_BUILD_DIR)/www/css/styles.min.css $(1)/www/css/ $(CP) $(PKG_BUILD_DIR)/www/css/styles.min.css $(1)/www/css/

View File

@ -16,15 +16,14 @@
<link href="css/styles.min.css" rel="stylesheet" media="screen"> <link href="css/styles.min.css" rel="stylesheet" media="screen">
<link href="css/debug.min.css" rel="stylesheet" media="screen"> <link href="css/debug.min.css" rel="stylesheet" media="screen">
<script src="js/libs/jquery-1-9-1.min.js"></script>
</head> </head>
<body id="page404"> <body id="page404">
Success Success
<script src="js/libs/jquery-1-9-1.min.js"></script>
<script> <script>
$(document.body).load("404.html"); $(document.body).load("404.html");
document.title = "Doodle3D 404" document.title = "Doodle3D 404"
</script> </script>
</body> </body>
</html> </html>