Skip to content

Commit 52a7773

Browse files
committed
修正缺少jquery.min.js文件的错误
1 parent 8febfce commit 52a7773

7 files changed

Lines changed: 11 additions & 121 deletions

File tree

.gitignore

Lines changed: 1 addition & 90 deletions
Original file line numberDiff line numberDiff line change
@@ -9,95 +9,6 @@ __pycache__/
99
# Distribution / packaging
1010
.project
1111
.pydevproject
12+
.DS_Store
1213
.Python
13-
env/
14-
build/
15-
develop-eggs/
16-
dist/
17-
downloads/
18-
eggs/
19-
.eggs/
20-
lib/
21-
lib64/
22-
parts/
23-
sdist/
24-
var/
25-
wheels/
26-
*.egg-info/
27-
.installed.cfg
28-
*.egg
2914

30-
# PyInstaller
31-
# Usually these files are written by a python script from a template
32-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33-
*.manifest
34-
*.spec
35-
36-
# Installer logs
37-
pip-log.txt
38-
pip-delete-this-directory.txt
39-
40-
# Unit test / coverage reports
41-
htmlcov/
42-
.tox/
43-
.coverage
44-
.coverage.*
45-
.cache
46-
nosetests.xml
47-
coverage.xml
48-
*.cover
49-
.hypothesis/
50-
51-
# Translations
52-
*.mo
53-
*.pot
54-
55-
# Django stuff:
56-
*.log
57-
local_settings.py
58-
59-
# Flask stuff:
60-
instance/
61-
.webassets-cache
62-
63-
# Scrapy stuff:
64-
.scrapy
65-
66-
# Sphinx documentation
67-
docs/_build/
68-
69-
# PyBuilder
70-
target/
71-
72-
# Jupyter Notebook
73-
.ipynb_checkpoints
74-
75-
# pyenv
76-
.python-version
77-
78-
# celery beat schedule file
79-
celerybeat-schedule
80-
81-
# SageMath parsed files
82-
*.sage.py
83-
84-
# dotenv
85-
.env
86-
87-
# virtualenv
88-
.venv
89-
venv/
90-
ENV/
91-
92-
# Spyder project settings
93-
.spyderproject
94-
.spyproject
95-
96-
# Rope project settings
97-
.ropeproject
98-
99-
# mkdocs documentation
100-
/site
101-
102-
# mypy
103-
.mypy_cache/

relation_graph/.DS_Store

-6 KB
Binary file not shown.

static/bower_components/.DS_Store

-6 KB
Binary file not shown.
-6 KB
Binary file not shown.

static/bower_components/jquery/.bower.json

Lines changed: 0 additions & 25 deletions
This file was deleted.

static/bower_components/jquery/dist/jquery.min.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/pic.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
}
5050
/*左侧内容区样式*/
5151
.subleft {
52-
width: 430px;
52+
width: 450px;
5353
border: 0px solid #e55202;
5454
padding: 2px 2px 1px;
5555
float: left;
@@ -59,8 +59,8 @@
5959
.subRight {
6060
border: 0px solid #e55202;
6161
float: left;
62-
padding: 3px 3px 0px;
63-
margin-left: 20px;
62+
padding: 3px 3px 3px;
63+
margin-left: 0px;
6464
margin-top: 0px;
6565
text-align:left;
6666
}
@@ -77,20 +77,20 @@
7777
<div class="wrap main">
7878
<div class="subleft">
7979
<form action="/add/" method="get">
80-
<textarea name="content" cols="60" rows="20" id="content">
80+
<textarea name="content" cols="53" rows="20" id="content">
8181
digraph g {
8282
a->b
8383
a->c[label="T",color="red"]
8484
{rank = same b c} #a b 相同一层
8585
label = "样例"
8686
}
8787
</textarea>
88-
<p><button type="button" id='sum'> 提 交 </button></p>
88+
<p><button type="button" id='sum'> 绘制图片 </button></p>
8989
</form>
9090

9191
</div>
9292
<div class="subRight">
93-
<p><span id='result'></span></p>
93+
<span id='result'></span>
9494
</div>
9595
</div>
9696
<script src="/static/bower_components/jquery/dist/jquery.min.js"></script>

0 commit comments

Comments
 (0)