Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bridge.send('VKWebAppInit');
- bridge.subscribe((e) => {
- switch (e.detail.type) {
- case 'VKWebAppUpdateConfig':
- let schemeAttribute = document.createAttribute('scheme');
- schemeAttribute.value = e.detail.data.scheme ? e.detail.data.scheme : 'space_gray';
- document.body.attributes.setNamedItem(schemeAttribute);
- break;
- default:
- // console.log(e.detail.type);
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment