mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: add deprecation for currentThemeKey
This ensures that theme components will not explode when attempting to access this
This commit is contained in:
@@ -1,6 +1,17 @@
|
||||
import { ajax } from "discourse/lib/ajax";
|
||||
import deprecated from "discourse-common/lib/deprecated";
|
||||
|
||||
const keySelector = "meta[name=discourse_theme_id]";
|
||||
|
||||
export function currentThemeKey() {
|
||||
if (console && console.warn && console.trace) {
|
||||
// TODO: Remove this code Jan 2019
|
||||
deprecated(
|
||||
"'currentThemeKey' is is deprecated use 'currentThemeId' instead. A theme component may require updating."
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export function currentThemeId() {
|
||||
let themeId = null;
|
||||
let elem = _.first($(keySelector));
|
||||
|
||||
Reference in New Issue
Block a user