Skip to content

Instantly share code, notes, and snippets.

@openjck
Last active August 29, 2015 14:18
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 openjck/7085c782eda89c68f8f9 to your computer and use it in GitHub Desktop.
Save openjck/7085c782eda89c68f8f9 to your computer and use it in GitHub Desktop.
{# Randomly determine if the new heading should be shown #}
{% set show_new_heading = random_boolean() %}
{% if show_new_heading %}
<h1>The Best Documentation Around</h1>
{% endif %}
<script>
window['optimizely'] = window['optimizely'] || [];
{% if show_new_heading %}
// Bucket visitor into the "New Heading" Optimizely variation for reporting
window['optimizely'].push(['bucketVisitor', 555555, 123456]);
{% else %}
// Bucket visitor into the baseline Optimizely variation for reporting
window['optimizely'].push(['bucketVisitor', 555555, 654321]);
{% endif %}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment