Remove old generated JS/CSS paths

We generate a whole file now.
This commit is contained in:
Eli Ribble 2026-04-08 15:01:02 +00:00
parent 1a7a2b13aa
commit 7f90391ecd
No known key found for this signature in database
2 changed files with 0 additions and 16 deletions

View file

@ -23,8 +23,6 @@ import (
func addFuncMap(t *template.Template) {
funcMap := template.FuncMap{
"bigNumber": bigNumber,
"bundlePathCSS": bundlePathCSS,
"bundlePathJS": bundlePathJS,
"displayUploadStatus": displayUploadStatus,
"displayUploadType": displayUploadType,
"duration": duration,
@ -62,14 +60,6 @@ func bigNumber(n int) string {
return result.String()
}
func bundlePathCSS() string {
//return static.BundlePathCSS
return "nowhere"
}
func bundlePathJS() string {
//return static.BundlePathJS
return "nowhere"
}
func displayUploadStatus(s string) string {
switch s {
case "committed":