diff --git a/examples/index.html b/examples/index.html
index b651ef7..26bcbae 100644
--- a/examples/index.html
+++ b/examples/index.html
@@ -44,6 +44,17 @@
Skift: A/B test basic example
document.getElementById('test-button').style.backgroundColor = '#ffcc00';
}
}).setup();
+
+ skift.create('another-test').setCondition(() => {
+ return true;
+ }).addVariation({
+ name: 'control' // No setup required.
+ }).addVariation({
+ name: 'bigger-button',
+ setup() {
+ document.getElementById('test-button').style.width = '300px';
+ }
+ }).setup();