summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-06-10 14:37:04 +0200
committerGuillaume Mazoyer <respawneral@gmail.com>2014-06-10 14:37:04 +0200
commitd45eab0fe59e5a24e0562365d3c314ca7bde99f3 (patch)
treedfc8175e0e682582aa336da884638b57d1c1da1f /index.php
parent5f29b7aa41a46e2b791c0dfc1023a07b02972e1f (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.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index 9110319..0369515 100644
--- a/index.php
+++ b/index.php
@@ -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>';
}