Last active
September 27, 2015 12:07
-
-
Save meritt/1266863 to your computer and use it in GitHub Desktop.
Асинхронный код для социальной кнопки ВКонтакте
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.vkAsyncInit = function() { // Настройки для Вконтакта | |
VK.init({ // инициализация | |
apiId: APPID, // APPID это индефикатор вконтакта | |
onlyWidgets: true | |
}); | |
VK.Widgets.Like("DIVID", { // Добавление кнопки "мне нравится" для элемента #DIVID | |
type: "mini" | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Подробнее о том как применять этот код можно прочитать здесь: blog.simonenko.su