aboutsummaryrefslogtreecommitdiffstats
path: root/modules/templates/helper.go
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2019-11-21 21:06:23 +0100
committertechknowlogick <techknowlogick@gitea.io>2019-11-21 15:06:23 -0500
commitf0aaffeedccaa7b338af6cf72cef77895513c9f1 (patch)
tree9101b9c92c60a9b9776e1e23fdb9c58ef63f4d38 /modules/templates/helper.go
parentcbaa1de9ec8ab1baa49357b660fab16a68097c84 (diff)
downloadgitea-f0aaffeedccaa7b338af6cf72cef77895513c9f1.tar.gz
gitea-f0aaffeedccaa7b338af6cf72cef77895513c9f1.zip
Add USE_SERVICE_WORKER setting (#9110)
* Add USE_SERVICE_WORKER setting This will be very useful setting for anyone doing frontend work. Fixes: https://github.com/go-gitea/gitea/issues/9044 * prevent potential syntax error on old browsers
Diffstat (limited to 'modules/templates/helper.go')
-rw-r--r--modules/templates/helper.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/templates/helper.go b/modules/templates/helper.go
index 6aa429ee14..8b5497a1c9 100644
--- a/modules/templates/helper.go
+++ b/modules/templates/helper.go
@@ -148,6 +148,9 @@ func NewFuncMap() []template.FuncMap {
"MetaKeywords": func() string {
return setting.UI.Meta.Keywords
},
+ "UseServiceWorker": func() bool {
+ return setting.UI.UseServiceWorker
+ },
"FilenameIsImage": func(filename string) bool {
mimeType := mime.TypeByExtension(filepath.Ext(filename))
return strings.HasPrefix(mimeType, "image/")