" )
.append( "
" + item.label.replace(regEx, function(a,b){
return '' + a + ''
}) + "" )
.appendTo( ul );
if(item.alias) {
listElement.attr("title", "Alias For " + item.company.name);
}
return listElement;
};
let poweredBy = $('
Powered by Amply');
$('#' + id).after(poweredBy);
}
function amplyGetQueryVariable(variable) {
var query = window.location.search.substring(1);
var vars = query.split('&');
for (var i = 0; i < vars.length; i++) {
var pair = vars[i].split('=');
if (decodeURIComponent(pair[0]) == variable) {
return decodeURIComponent(pair[1]);
}
}
console.log('Query variable %s not found', variable);
return false
}
amplyToggleMatch = () => {
$('#amplyMatchForm').slideToggle();
}
amplyPageSetup();
}
, $);
}
);