Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Jul 23, 2020
1 parent 9c62288 commit 7146abf
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ h1 {

padding-left: 50px;

background-image:url('/styles/search.png');
background-image:url('/static/search.png');
background-repeat:no-repeat;
background-position:left center;
outline:0;
Expand Down
4 changes: 2 additions & 2 deletions TF_SimilarityAbstractSearch/api/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="{{url_for('styles', filename='style.css')}}" type="text/css" >
<link rel="stylesheet" href="{{url_for('static', filename='style.css')}}" type="text/css" >
<title>TalkToMedPapers</title>
<script>
var papers = {{ papers | tojson}};
Expand Down Expand Up @@ -36,7 +36,7 @@ <h1>TalkToMedPapers</h1>
<!-- Babel for displaying JSX -->
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<!-- Load our React component -->
<script src="{{ url_for('styles', filename='paper_list.js') }}" type="text/babel"></script>
<script src="{{ url_for('static', filename='paper_list.js') }}" type="text/babel"></script>

</body>
</html>

0 comments on commit 7146abf

Please sign in to comment.