Skip to content

Instantly share code, notes, and snippets.

@cladera
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cladera/194f5c568b35fd69aad4 to your computer and use it in GitHub Desktop.
Save cladera/194f5c568b35fd69aad4 to your computer and use it in GitHub Desktop.
Google Analytics Experiments in AngularJS - product.html
<div>
<h1>{{product.name}}</h1>
<p>{{product.price}}</p>
<img ng-src="{{product.picture}}">
<p>{{product.description}}</p>
<div>
<button ng-if="variant === 'v0'" class="red-button" ng-click="addToCart()">Add to cart</button>
<button ng-if="variant === 'v1'" class="green-button" ng-click="addToCart()">Add to cart</button>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment