I try to integrate Optimizely with AngularJS and I want to show different templates based on what variation is running. I would add a constant function to the Angular app, that would check if a variant/variants are active.
sth like
function isVariant(variantNames) {
return true; // if any of the variants are active.
}
I could not find in the Optimizely documentation on how to get this data.