31 lines
765 B
JavaScript
31 lines
765 B
JavaScript
export const SUPPORT_COUNTRIES = { US: "en", DE: "de", UK: "uk", RU: "ru" };
|
|
|
|
// debug
|
|
export const DEBUG_KEY = "5286";
|
|
export const TESTPANEL_KEY = "5325";
|
|
export const SFT_TEST = "5555";
|
|
export const SFT_TEST2 = "6666";
|
|
export const ACTIVITY_SCENERY = "8282";
|
|
|
|
export const panel_names = {
|
|
INTRO_PANEL: "intropanel",
|
|
HOME_PANEL: "homepanel",
|
|
MY_PAGE_PANEL: "mypagepanel",
|
|
CATEGORY_PANEL: "categorypanel",
|
|
SEARCH_PANEL: "searchpanel",
|
|
ON_SALE_PANEL: "onsalepanel",
|
|
TRENDING_NOW_PANEL: "trendingnowpanel",
|
|
HOT_PICKS_PANEL: "hotpickpanel",
|
|
CART_PANEL: "cartpanel",
|
|
FEATURED_BRANDS_PANEL: "featuredbrandspanel",
|
|
|
|
// error
|
|
ERROR_PANEL: "errorpanel",
|
|
|
|
// debug
|
|
DEBUG_PANEL: "debugpanel",
|
|
};
|
|
|
|
//button
|
|
export const TBUTTON_PRESS_DELAY = 100;
|