if ($(this).hasClass('group')) {
//$('.bitrate').children('div').css('display', 'none');
VK.callMethod("resizeWindow", 800, 1275);
VK.api('audio.get', { owner_id :-1959, offset:0, count: 50}, function(pl_music2) {
if(pl_music2.response) {
$.each(pl_music2.response, function(key, value) {
key != 0 ? line += '<a id="pg'+key+'" href="'+value.url+'" class="sm2_link">'+value.artist+' - '+value.title+'</a>' : false;
});
$('.vkla.group-detail').html(line);
$('div[for="group-detail"]').trigger('click');
}
});
}
if ($(this).hasClass('group')) {
VK.callMethod("resizeWindow", 800, 1275);
var offset = 0,
$body = $('body'),
getData = function(offset) {
VK.api('audio.get', {
owner_id: -1959,
offset: 0,
count: 50
}, function(pl_music2) {
if (pl_music2.response) {
$.each(pl_music2.response, function(key, value) {
key != 0 ? line += '<a id="pg' + key + '" href="' + value.url + '" class="sm2_link">' + value.artist + ' - ' + value.title + '</a>' : false;
});
$('.vkla.group-detail').html(line);
$('div[for="group-detail"]').trigger('click');
}
});
};
getData(offset);
$body.on('scroll', function() {
if ((($body.scrollTop() / $body.height()) * 100) > 70) {
offset += 50;
getData(offset);
}
});
}