-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEV: Switch to new API to render into plugin outlet take 2 (#40)
This reverts commit c2c6b9b. Theme compatibility issue has been fixed.
- Loading branch information
Showing
4 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
3.1.999: bd0594108a1cfd6c11cb8af218dba9b211b44015 | ||
< 3.2.0.beta2: 061adfe5ae20abbb82be711d373894c30987ec75 | ||
< 3.2.0.beta1-dev: c344d0f519bbb3660e306c50c0d1aa1a776c5e13 | ||
3.1.999: bd0594108a1cfd6c11cb8af218dba9b211b44015 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
javascripts/discourse/connectors/before-header-panel/custom-header-link-connector.hbs
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
javascripts/discourse/initializers/discourse-custom-header-links.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { apiInitializer } from "discourse/lib/api"; | ||
import CustomHeaderLinks from "../components/custom-header-links"; | ||
|
||
export default apiInitializer("1.14.0", (api) => { | ||
api.renderInOutlet("before-header-panel", CustomHeaderLinks); | ||
}); |