Added different compliments for different times of the day

This commit is contained in:
Paul-Vincent Roll
2015-01-08 22:48:22 +01:00
parent 460cb40f56
commit 7d7bacfff7
2 changed files with 26 additions and 9 deletions

12
js/main.js Normal file → Executable file
View File

@@ -204,7 +204,17 @@ jQuery(document).ready(function($) {
{
//see compliments.js
while (compliment == lastCompliment) {
compliment = Math.floor(Math.random()*compliments.length);
//Check for current time
var compliments;
var date = new Date();
var hour = date.getHours();
//set compliments to use
if (hour >= 3 && hour < 12) compliments = morning;
if (hour >= 12 && hour < 17) compliments = afternoon;
if (hour >= 17 || hour < 3) compliments = evening;
compliment = Math.floor(Math.random()*compliments.length);
}
$('.compliment').updateWithText(compliments[compliment], 4000);