Comparing version 1.0.18 to 1.0.19
{ | ||
"name": "autotune", | ||
"license": "Apache-2.0", | ||
"version": "1.0.18", | ||
"version": "1.0.19", | ||
"description": "Automatically tune JavaScript apps", | ||
@@ -6,0 +6,0 @@ "main": "dist/index.js", |
@@ -26,3 +26,3 @@ # autotune: automatic A/B testing for any app | ||
Arguing with colleagues about what title to use for the homepage? Let Autotune pick the one that converts the most users: | ||
Not sure which title to use for your site? Let Autotune pick the one that converts the most users: | ||
@@ -46,2 +46,20 @@ ```html | ||
### Site style | ||
Have a couple different style options for your page? Use the `autotune-class` attribute to let Autotune apply the CSS class that performs the best: | ||
```html | ||
<style> | ||
.clean { ... } | ||
.busy { ... } | ||
.extra-busy { ... } | ||
</style> | ||
<body autotune-class="clean busy extra-busy"> | ||
... | ||
</body> | ||
``` | ||
Autotune will test the options you've given between `<autotune>` tags, and automatically favor the option that gets most users to click `Sign up`. | ||
### "Log in" or "Sign in"? | ||
@@ -48,0 +66,0 @@ |
127665
120