2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

DEV: add deprecation for currentThemeKey

This ensures that theme components will not explode when attempting to access this
This commit is contained in:
Sam 2018-07-12 15:36:38 +10:00
parent a201103127
commit 29eb9dda59

View file

@ -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));