Commit d7acca6588ac049a6ae7a9d4856f3bff4624d987
1 parent
e0818d92
Exists in
master
and in
1 other branch
- updated links to latest versions of javascript libraries (mathjax, bootstrap, …
…codemirror, fontawesome)
Showing
7 changed files
with
7 additions
and
12 deletions
Show diff stats
serve.py
... | ... | @@ -234,8 +234,6 @@ class QuestionHandler(BaseHandler): |
234 | 234 | question_html = self.render_string(self.templates[question['type']], |
235 | 235 | question=question, md=md_to_html) |
236 | 236 | |
237 | - print(question['tries']) | |
238 | - | |
239 | 237 | self.write({ |
240 | 238 | 'method': 'new_question', |
241 | 239 | 'params': { | ... | ... |
static/MDB
static/bootstrap
static/codemirror
static/fontawesome
static/mathjax
templates/topic.html
... | ... | @@ -23,7 +23,7 @@ |
23 | 23 | <link rel="stylesheet" href="/static/MDB/css/mdb.min.css"> |
24 | 24 | <link rel="stylesheet" href="/static/css/animate.min.css"> |
25 | 25 | <link rel="stylesheet" href="/static/css/github.css"> |
26 | - <link rel="stylesheet" href="/static/codemirror/codemirror.css"> | |
26 | + <link rel="stylesheet" href="/static/codemirror/lib/codemirror.css"> | |
27 | 27 | <link rel="stylesheet" href="/static/css/topic.css"> |
28 | 28 | |
29 | 29 | <!-- Scripts --> |
... | ... | @@ -32,8 +32,8 @@ |
32 | 32 | <script defer src="/static/fontawesome/js/all.js"></script> |
33 | 33 | <script defer src="/static/bootstrap/js/bootstrap.min.js"></script> |
34 | 34 | <script defer src="/static/MDB/js/mdb.min.js"></script> |
35 | - <script defer src="/static/codemirror/codemirror.js"></script> | |
36 | - <script defer src="/static/codemirror/z80.js"></script> | |
35 | + <script defer src="/static/codemirror/lib/codemirror.js"></script> | |
36 | + <!-- <script defer src="/static/codemirror/mode/z80/z80.js"></script> --> | |
37 | 37 | |
38 | 38 | <script defer src="/static/js/topic.js"></script> |
39 | 39 | </head> |
... | ... | @@ -86,8 +86,6 @@ |
86 | 86 | |
87 | 87 | <div id="comments"></div> |
88 | 88 | |
89 | - | |
90 | - | |
91 | 89 | </div> |
92 | 90 | </div> |
93 | 91 | ... | ... |