Skip to content

Commit

Permalink
Fixed tooltip on logo lost on instant navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Oct 15, 2024
1 parent 0418a22 commit 649abd2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion material/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
</script>
{% endblock %}
{% block scripts %}
<script src="{{ 'assets/javascripts/bundle.525ec568.min.js' | url }}"></script>
<script src="{{ 'assets/javascripts/bundle.83f73b43.min.js' | url }}"></script>
{% for script in config.extra_javascript %}
{{ script | script_tag }}
{% endfor %}
Expand Down
8 changes: 4 additions & 4 deletions src/templates/assets/javascripts/bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,6 @@ const control$ = merge(
...getComponentElements("dialog")
.map(el => mountDialog(el, { alert$ })),

/* Header */
...getComponentElements("header")
.map(el => mountHeader(el, { viewport$, header$, main$ })),

/* Color palette */
...getComponentElements("palette")
.map(el => mountPalette(el)),
Expand Down Expand Up @@ -264,6 +260,10 @@ const content$ = defer(() => merge(
: EMPTY
),

/* Header */
...getComponentElements("header")
.map(el => mountHeader(el, { viewport$, header$, main$ })),

/* Header title */
...getComponentElements("header-title")
.map(el => mountHeaderTitle(el, { viewport$, header$ })),
Expand Down

0 comments on commit 649abd2

Please sign in to comment.