diff options
author | Christian Oliff <christianoliff@yahoo.com> | 2018-08-20 20:13:40 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-20 20:13:40 +0900 |
commit | 869a674f29de68f2f3f706e9c9c54b2b6c5621fa (patch) | |
tree | c4e2132646f03d6b52225848ff0bbbcdffee7bbd /index.html | |
parent | c260e4403d2b54c56c50043d67490e2c1041f3b2 (diff) | |
download | nextcloud-server-869a674f29de68f2f3f706e9c9c54b2b6c5621fa.tar.gz nextcloud-server-869a674f29de68f2f3f706e9c9c54b2b6c5621fa.zip |
remove type="text/javascript" from index.html
type="text/javascript" is not needed and removing it makes file-size smaller/faster
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.html b/index.html index f160f46b6fc..1ed4f8b9c8e 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <html> <head> - <script type="text/javascript"> window.location.href="index.php"; </script> + <script> window.location.href="index.php"; </script> <meta http-equiv="refresh" content="0; URL=index.php"> </head> </html> |