diff options
author | Wu Cheng-Han | 2016-09-18 16:50:35 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2016-09-18 16:50:35 +0800 |
commit | b7200d7910fa504e0e5e05cd390cca78a7338605 (patch) | |
tree | fa7621c11f16afd064e3d992ffadc17c5176049d /public/views | |
parent | 79fd2d13649180c7c67a0bf37b90518f9fa5a5a3 (diff) |
Fix the include order to avoid Reference Errors
Diffstat (limited to '')
-rw-r--r-- | public/views/foot.ejs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/views/foot.ejs b/public/views/foot.ejs index 9fa79d55..9328ac9c 100644 --- a/public/views/foot.ejs +++ b/public/views/foot.ejs @@ -79,6 +79,6 @@ <script src="<%- url %>/js/extra.js" defer></script> <script src="<%- url %>/js/render.js" defer></script> <script src="<%- url %>/js/history.js" defer></script> -<script src="<%- url %>/js/index.js" defer></script> +<script src="<%- url %>/js/reveal-markdown.js" defer></script> <script src="<%- url %>/js/syncscroll.js" defer></script> -<script src="<%- url %>/js/reveal-markdown.js" defer></script>
\ No newline at end of file +<script src="<%- url %>/js/index.js" defer></script>
\ No newline at end of file |