Skip to content

Commit

Permalink
Fix iframe source (#38)
Browse files Browse the repository at this point in the history
* Fixing iframe sources.

* History note for iframe fix
  • Loading branch information
holtgrewe authored and bobermayer committed Jan 9, 2020
1 parent 9597369 commit 13e1d16
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
History
=======

-----------------
HEAD (unreleased)
-----------------

- fixing iframe sources (important if running behind reverse proxy with HTTPS)

------
v0.8
v0.8.0
------

- adding sphinx documentation for ReadTheDocs
Expand Down
4 changes: 2 additions & 2 deletions scelvis/ui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def render_convert():
html.P(
"Upload .zip or .tar.gz of your data, either containing CellRanger output, raw text files or a .loom file"
),
html.Iframe(src="/convert", width="400", height="250"),
html.Iframe(src="/convert/", width="400", height="250"),
]
)

Expand All @@ -60,7 +60,7 @@ def render_upload():
),
")",
html.P(),
html.Iframe(src="/upload", width="400", height="200"),
html.Iframe(src="/upload/", width="400", height="200"),
]
)

Expand Down

0 comments on commit 13e1d16

Please sign in to comment.