diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-06-10 14:37:04 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-06-10 14:37:04 +0200 |
commit | d45eab0fe59e5a24e0562365d3c314ca7bde99f3 (patch) | |
tree | dfc8175e0e682582aa336da884638b57d1c1da1f /index.php | |
parent | 5f29b7aa41a46e2b791c0dfc1023a07b02972e1f (diff) |
New directory js/ for Javascript file.
Use a local jquery instead of an online one.
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -192,9 +192,9 @@ final class LookingGlass { $this->render_content(); $this->render_footer(); print '</body>'; - print '<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>'; + print '<script src="js/jquery-1.11.1.min.js"></script>'; print '<script src="bootstrap-3.1.1/js/bootstrap.min.js"></script>'; - print '<script src="includes/main.js"></script>'; + print '<script src="js/looking-glass.js"></script>'; print '</body>'; print '</html>'; } |