Cookie "push_subscription_updated" isn't set using `XF.Cookie.set`

JavaScript:

Код:
            }).then(() =>
            {
                if (type === 'update')
                {
                    document.cookie = 'push_subscription_updated=1'
                }
            }).catch(error =>
should be
JavaScript:

Код:
            }).then(() =>
            {
                if (type === 'update')
                {
                    XF.Cookie.set('push_subscription_updated', '1')
                }
            }).catch(error =>

Читать далее...
 
Активность
Пока что здесь никого нет

Похожие темы

Назад
Верх Низ