DEV: add deprecation for currentThemeKey
This ensures that theme components will not explode when attempting to access this
This commit is contained in:
parent
a201103127
commit
29eb9dda59
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue