Skip to content

Commit

Permalink
make css and js paths absolute to make the browser cache the resources
Browse files Browse the repository at this point in the history
  • Loading branch information
jfontan committed Dec 2, 2011
1 parent 864454a commit 30c6083
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@
</head>
<body>

<link rel="stylesheet" href="css/codemirror.css">
<link rel="stylesheet" href="css/default.css">

<script src="js/lzma.js"></script>
<script src='js/jquery.js'></script>
<script src='js/helpers.js'></script>
<script src="js/codemirror.js"></script>
<script src="js/glsl.js"></script>
<link rel="stylesheet" href="/css/codemirror.css">
<link rel="stylesheet" href="/css/default.css">

<script src="/js/lzma.js"></script>
<script src='/js/jquery.js'></script>
<script src='/js/helpers.js'></script>
<script src="/js/codemirror.js"></script>
<script src="/js/glsl.js"></script>

<script id="example" type="x-shader/x-fragment">#ifdef GL_ES
precision mediump float;
Expand Down

0 comments on commit 30c6083

Please sign in to comment.