From 5eaa202d498c3012c8d55aff72c899d75aebd460 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Mon, 23 Oct 2017 15:34:31 +0200 Subject: [PATCH] Welcome Page: Fix count of awesome people (Cloud subscribers) --- src/templates/welcome.pug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/templates/welcome.pug b/src/templates/welcome.pug index 0801d4b..a456ca1 100644 --- a/src/templates/welcome.pug +++ b/src/templates/welcome.pug @@ -379,7 +379,7 @@ li style="background-image: url({{ url_for('static', filename='assets/img/backgrounds/pattern_bw_01.jpg')}})") .page-card-side h2.page-card-title - span Join #[strong(class="awesome-people") 3460] awesome people. + span Join #[strong(class="awesome-people") 3492] awesome people. br | Support Blender, get inspiration, knowledge and tools in one place. @@ -402,7 +402,7 @@ script. $.get('https://store.blender.org/product-counter/?prod=cloud', function(data) { }).done(function(data){ if (data.total_sold > 0) { - $('awesome-people').html(data.total_sold); + $('.awesome-people').html(data.total_sold); } }); }