UNPKG

@textback/notification-widget

Version:

TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.

18 lines (17 loc) 561 B
const COOKIE_NAME_PREFIX = 'tb_notif_widget_'; const constants = { COOKIE_NAME_PREFIX: COOKIE_NAME_PREFIX, /** * 10 years */ WIDGET_USER_ID_COOKIE_TTL: 315360000, COOKIE_WIDGET_USER_ID: `${COOKIE_NAME_PREFIX}widgetUserId`, SECONDS_IN_DAY: 86400, // make subscription using API call WIDGET_TYPE_API_CALL : 'apiCall', // make subscription using native social widget WIDGET_TYPE_WIDGET : 'widget', DEFAULT_WIDGET_TYPE : 'widget', SUBSCRIPTION_WINDOW_PROPS: 'width=600,height=800', }; export default constants;