Integrate changes from the Prof

Received as-is changes from the Prof.
This commit is contained in:
supervj 2021-05-21 14:58:11 -04:00
parent ea0a874e38
commit 8b60052f65
17 changed files with 488 additions and 30 deletions

View file

@ -288,6 +288,10 @@ Handlebars.registerHelper('getProperty', function (data, property) {
return getProperty(data, property);
});
Handlebars.registerHelper('round', function(value) {
return Math.floor(value);
});
function setFolderBackground(html) {
html.find("header.folder-header").each(function() {