Skip to content

Instantly share code, notes, and snippets.

@xhoskin
Created April 15, 2016 08:46
Show Gist options
  • Save xhoskin/48dc7e296da57edd6f8007b9403977fc to your computer and use it in GitHub Desktop.
Save xhoskin/48dc7e296da57edd6f8007b9403977fc to your computer and use it in GitHub Desktop.
var activateVkWidget = function() {
VK.Widgets.Group("vk_groups", {
mode: 0,
width: "auto",
height: "247",
color1: 'FFFFFF',
color2: '2B587A',
color3: '5B7FA6'
}, {{ config('widget_vk') }});
};
activateVkWidget();
window.onresize = function(){
var widget = document.getElementById('vk_groups');
while (widget.hasChildNodes()) {
widget.removeChild(widget.lastChild);
}
activateVkWidget();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment