We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 042c620 commit e4c87beCopy full SHA for e4c87be
readthedocs/core/static-src/core/js/doc-embed/sponsorship.js
@@ -53,8 +53,13 @@ function create_ad_placement() {
53
class_name = 'ethical-rtd ethical-dark-theme';
54
} else if (rtd.is_rtd_like_theme()) {
55
selector = 'nav.wy-nav-side > div.wy-side-scroll';
56
- style_name = 'stickybox';
57
- ad_type = 'image';
+ if (Math.random() <= 0.1) {
+ // Use the stickybox placement 10% of the time during rollout
58
+ style_name = 'stickybox';
59
+ ad_type = 'image';
60
+ } else {
61
+ class_name = 'ethical-rtd ethical-dark-theme';
62
+ }
63
} else if (rtd.is_alabaster_like_theme()) {
64
selector = 'div.sphinxsidebar > div.sphinxsidebarwrapper';
65
class_name = 'ethical-alabaster';
0 commit comments