From 53cf85a4c2a543d002de42a7791f84984576896d Mon Sep 17 00:00:00 2001 From: The_Grits Date: Mon, 8 Feb 2016 10:04:38 -0500 Subject: [PATCH 1/3] Update project count Updated the number with a more recent number, I wasn't sure if using a string like "Loading..." would damage anything. --- src/views/splash/splash.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/splash/splash.jsx b/src/views/splash/splash.jsx index d1e2210dc..44cec94e3 100644 --- a/src/views/splash/splash.jsx +++ b/src/views/splash/splash.jsx @@ -27,7 +27,7 @@ var Splash = injectIntl(React.createClass({ ], getInitialState: function () { return { - projectCount: 10569070, + projectCount: 12893209, // gets the shared project count activity: [], // recent social actions taken by users someone is following news: [], // gets news posts from the scratch Tumblr featuredCustom: {}, // custom homepage rows, such as "Projects by Scratchers I'm Following" From 9f2325bd83834cb75195c635122ce57081dd6467 Mon Sep 17 00:00:00 2001 From: The_Grits Date: Thu, 18 Feb 2016 14:29:58 -0500 Subject: [PATCH 2/3] "over 13 million" Changed as per @mewtaylor's suggestion --- src/views/splash/splash.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/splash/splash.jsx b/src/views/splash/splash.jsx index 44cec94e3..106de591e 100644 --- a/src/views/splash/splash.jsx +++ b/src/views/splash/splash.jsx @@ -27,7 +27,7 @@ var Splash = injectIntl(React.createClass({ ], getInitialState: function () { return { - projectCount: 12893209, // gets the shared project count + projectCount: "over 13 million", // gets the shared project count activity: [], // recent social actions taken by users someone is following news: [], // gets news posts from the scratch Tumblr featuredCustom: {}, // custom homepage rows, such as "Projects by Scratchers I'm Following" From 8d05ed84b4f87fe0a8486a80d5ef679ffbf334ff Mon Sep 17 00:00:00 2001 From: The_Grits Date: Thu, 18 Feb 2016 14:34:02 -0500 Subject: [PATCH 3/3] singlequotes Apparently double quotes don't work --- src/views/splash/splash.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/splash/splash.jsx b/src/views/splash/splash.jsx index 106de591e..461eba61c 100644 --- a/src/views/splash/splash.jsx +++ b/src/views/splash/splash.jsx @@ -27,7 +27,7 @@ var Splash = injectIntl(React.createClass({ ], getInitialState: function () { return { - projectCount: "over 13 million", // gets the shared project count + projectCount: 'over 13 million', // gets the shared project count activity: [], // recent social actions taken by users someone is following news: [], // gets news posts from the scratch Tumblr featuredCustom: {}, // custom homepage rows, such as "Projects by Scratchers I'm Following"