Skip to content

Commit

Permalink
DEV: adds support for header-title in topicTitleDecorators (#9562)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaffeux committed Apr 28, 2020
1 parent 9d781d4 commit 4ecc258
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -7,6 +7,7 @@ import PanEvents, {
SWIPE_DISTANCE_THRESHOLD,
SWIPE_VELOCITY_THRESHOLD
} from "discourse/mixins/pan-events";
import { topicTitleDecorators } from "discourse/components/topic-title";

const PANEL_BODY_MARGIN = 30;

Expand Down Expand Up @@ -260,6 +261,13 @@ const SiteHeaderComponent = MountWidget.extend(Docking, PanEvents, {
},

afterRender() {
const headerTitle = document.querySelector(".header-title .topic-link");
if (headerTitle && this._topic) {
topicTitleDecorators.forEach(cb =>
cb(this._topic, headerTitle, "header-title")
);
}

const $menuPanels = $(".menu-panel");
if ($menuPanels.length === 0) {
if (this.site.mobileView) {
Expand Down

0 comments on commit 4ecc258

Please sign in to comment.