diff options
author | 0ip <me@factor.cc> | 2013-01-12 18:41:56 +0100 |
---|---|---|
committer | 0ip <me@factor.cc> | 2013-01-12 18:41:56 +0100 |
commit | 2786807f2f2b1884f9d7a5d8eb499b9c2be0db7a (patch) | |
tree | 7f1869dc56a51a8774d1d5aaa92c59ba901f80e0 | |
parent | 9f92b2156f4aca38ef8d1406f3a317c428c88101 (diff) | |
download | etherpad-lite-2786807f2f2b1884f9d7a5d8eb499b9c2be0db7a.zip |
Fix broken relative paths
Bug introduced inĀ 53521c8732
-rw-r--r-- | src/templates/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/templates/index.html b/src/templates/index.html index 668b7abe..f0e1beb3 100644 --- a/src/templates/index.html +++ b/src/templates/index.html @@ -33,9 +33,9 @@ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"> <link rel="shortcut icon" href="<%=settings.favicon%>"> - <link rel="localizations" type="application/l10n+json" href="../locales.json" /> - <script type="text/javascript" src="../static/js/html10n.js"></script> - <script type="text/javascript" src="../static/js/l10n.js"></script> + <link rel="localizations" type="application/l10n+json" href="locales.json"> + <script type="text/javascript" src="static/js/html10n.js"></script> + <script type="text/javascript" src="static/js/l10n.js"></script> <style> html, body { |