From df3cf418dab2908fb649161df4edabeaa890cc80 Mon Sep 17 00:00:00 2001 From: manetta Date: Thu, 4 Apr 2019 17:23:55 +0200 Subject: [PATCH] ughh --- 08/cnn/cnn.css | 3 ++- 08/cnn/cnn.js | 9 ++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/08/cnn/cnn.css b/08/cnn/cnn.css index 60f74ae..fc30c53 100644 --- a/08/cnn/cnn.css +++ b/08/cnn/cnn.css @@ -16,7 +16,8 @@ body { vertical-align: top; padding: 5px; font-size: 14px; - background-image: -webkit-gradient(linear, left top, left bottom, from(yellow), to(gold)); + background-image: -webkit-gradient(linear, left top, left bottom, from(#02b38d), to(#07d2c4)); + /*background-image: -webkit-gradient(linear, left top, left bottom, from(yellow), to(gold));*/ } #cnn .button_container { display: inline-block; diff --git a/08/cnn/cnn.js b/08/cnn/cnn.js index 819eeb2..3ac438b 100644 --- a/08/cnn/cnn.js +++ b/08/cnn/cnn.js @@ -28,6 +28,13 @@ // Find categories that this page is part of var categories = findCategories(data); + if ( categories.length > 0 && categories.length < 2){ + //if we have only one category we add another one at random + var keys = Object.keys(data) + keys.splice(categories[1], 1) + categories.push(keys[Math.floor(Math.random() * keys.length)]) + } + // Select a pseudo-randomised category for buttonA var buttonA = categories[Math.floor(Math.random() * categories.length)]; document.querySelectorAll('#buttonA button')[0].textContent = buttonA; @@ -81,4 +88,4 @@ \ ' - insertCNN(cnn_template); \ No newline at end of file + insertCNN(cnn_template);