Added progress info to entries.

This commit is contained in:
kor 2018-07-15 00:17:00 +12:00
parent 0928295857
commit 2454e9f85c
2 changed files with 14 additions and 2 deletions

View File

@ -263,7 +263,7 @@ RV BATTERY RANT
NOTE : rant
SEEN : true
HLD DIFFICULTY
HYPER LIGHT DIFFICULTY
LINK : https://www.gamasutra.com/view/news/269957/How_Hyper_Light_Drifter_balances_difficulty_with_fairness.php
TYPE : article
DATE : 12018-07-03
@ -1086,7 +1086,7 @@ THE EMPIRE
HORSESHIT PROBLEM
LINK : http://www.duncantrussell.com/episodes/2018/7/12/taryn-southern
TYPE : podcast
TERM : 'Horseshit problem'
TERM : 'Horseshit problem' - a problem that seems existentially bad but is later solved indirectly by technology. The name refers to horse manue starting to be a major problem when horses were extensively used for transport their manure was everywhere and poisoning water etc. When the cars were invented and mass adopted it was suddenly not an issue.
DATE : 12018-07-14
SEEN : true

View File

@ -131,6 +131,18 @@ function displayEntries(db)
entries += `<div id="term">TERM(S): ${value.TERM}</div>`;
}
// TERM
if (typeof value.TERM !== 'undefined')
{
entries += `<div id="term">TERM(S): ${value.TERM}</div>`;
}
// PROGRESS
if (typeof value.PROG !== 'undefined')
{
entries += `<div id="term">PROGRESS: ${value.PROG}</div>`;
}
entries += `</div>`;
lastEntry = i;