diff options
| -rw-r--r-- | res/templates/index.html | 10 | ||||
| -rw-r--r-- | src/client/app.js | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/res/templates/index.html b/res/templates/index.html index 7595a4cf..beec1459 100644 --- a/res/templates/index.html +++ b/res/templates/index.html @@ -2,11 +2,11 @@ <head> <title>Rhizi Prototype </title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> - <link href="res/css/style.css" rel="stylesheet" type="text/css"> - <link rel="shortcut icon" href="res/img/favicon2.ico" /> + <link href="/res/css/style.css" rel="stylesheet" type="text/css"> + <link rel="shortcut icon" href="/res/img/favicon2.ico" /> - <script src="src/local_config.js"></script> - <script data-main='src/app.js' src="lib/require.js"></script> + <script src="local_config.js"></script> + <script data-main='app.js' src="/res/lib/require.js"></script> </head> @@ -120,7 +120,7 @@ </div> <div class="rhizi-logo"><a href="http://www.rhizi.org"> - <img src="res/img/rhizi-logo.png"/></a> + <img src="/res/img/rhizi-logo.png"/></a> </div> </div> diff --git a/src/client/app.js b/src/client/app.js index 39acdde7..ae84c953 100644 --- a/src/client/app.js +++ b/src/client/app.js @@ -1,5 +1,5 @@ (function() { - var lib_path = '../lib/'; + var lib_path = '/res/lib/'; var config = { paths: { jquery: lib_path + 'jquery', |
