mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-21 04:45:17 +00:00
Added different compliments for different times of the day
This commit is contained in:
12
js/main.js
Normal file → Executable file
12
js/main.js
Normal file → Executable 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);
|
||||
|
Reference in New Issue
Block a user