import * as CORS from 'cors';
const cors = CORS({ origin: true });
export const callback = functions.https.onRequest((req, res) => {
cors(req, res, () => {
handleCallback(req)
.then(token => res.status(200).send({ token }))
.catch(err => res.status(400).send(err));
});
});
это не правильное выражение? потому что this.CreateCategoryModalService.stateSetHotKeysModalisOpen это массив
function diplay_hide (blockId)
{
if (localStorage.getItem('isShowPopup')) return false;
if ($(blockId).css('display') == 'none')
{
$(blockId).animate({height: 'show'}, 500);
localStorage.setItem('isShowPopup', '1');
}
else
{
$(blockId).animate({height: 'hide'}, 500);
}
}