+ Adding simple navbar menu at the top

In theory breadcrumbs would look/feel better to use but for now
this will do to massively improve the UX
This commit is contained in:
shockrah
2021-10-26 09:57:08 -07:00
parent 0215ab6ede
commit 64ef933267
5 changed files with 35 additions and 12 deletions

View File

@@ -33,7 +33,7 @@ class VideoMeta {
thumbnail_div() : HTMLAnchorElement {
let nail = document.createElement('img')
nail.className = 'pure-img'
nail.className = 'img-fluid'
// Modern browser's should be able to cache this request
if(!(this.thumbnail == null || this.thumbnail.length == 0)) {

View File

@@ -31,7 +31,7 @@ class Category {
thumbnail_div() : HTMLAnchorElement {
let nail = document.createElement('img')
nail.className = 'pure-img'
nail.className = 'img-fluid'
// Modern browser's should be able to cache this request
if(!(this.thumbnail == null || this.thumbnail.length == 0)) {