WP Socializer to socializer template
by Aakash Chakravarthy
JavaScript
tmpl = [];
a = $.getJSON('https://api.jsonbin.io/b/5a6cae03a9c1af704c31d1ad');
a.done(function(data){
$.each(data, function(i, item){
if(item['service'] == 'social_buttons'){
var stngs = [];
var tstyle = '';
$.each(item['settings'], function(j, opts){
if(j == 'text-styles'){
tstyle = opts;
return;
}
if(j == 'selected_sites' || j == 'more_sites' || j == 'title' || j == '_feature' || opts == ''){
return;
}
stngs.push(opts);
});
$('body').append('["", "' + stngs.join(',') + '", "' + tstyle + '"],');
}
});
});