Skip to content

Commit 7d3b6ea

Browse files
waralexrpkyle
andauthored
Update src/index_page.jl
Co-Authored-By: Ryan Patrick Kyle <[email protected]>
1 parent 7acf2b4 commit 7d3b6ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/index_page.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
make_css_tag(url::String) = """<link rel="stylesheet" href="$(url)">"""
2-
make_css_tag(dict::Dict{String, String}) = formattag("link", dict, opened = true)
2+
make_css_tag(dict::Dict{String, String}) = format_tag("link", dict, opened = true)
33

4-
make_scipt_tag(url::String) = """<script src="$(url)"></script>"""
5-
make_scipt_tag(dict::Dict{String, String}) = formattag("script", dict)
4+
make_script_tag(url::String) = """<script src="$(url)"></script>"""
5+
make_script_tag(dict::Dict{String, String}) = format_tag("script", dict)
66

77
function metas_html(app::DashApp)
88
meta_tags = app.config.meta_tags
@@ -122,4 +122,4 @@ function index_page(app::DashApp; debug = false)
122122
scripts = scripts_html(app, debug = debug),
123123
renderer = renderer_html()
124124
)
125-
end
125+
end

0 commit comments

Comments
 (0)