mirror of
https://github.com/TangentFoxy/memex.git
synced 2024-11-22 04:54:23 +00:00
Added progress info to entries.
This commit is contained in:
parent
0928295857
commit
2454e9f85c
@ -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
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user