www/OnlineHelpInfo.js: add dummy to avoid warnings

This commit is contained in:
Dietmar Maurer 2019-01-25 12:37:01 +01:00
parent 1631c54fca
commit 864e85f4ff
2 changed files with 8 additions and 2 deletions

View File

@ -10,8 +10,8 @@ JSSRC= \
all: proxmox-backup-gui.js
proxmox-backup-gui.js: ${JSSRC}
cat ${JSSRC} >$@.tmp
proxmox-backup-gui.js: OnlineHelpInfo.js ${JSSRC}
cat OnlineHelpInfo.js ${JSSRC} >$@.tmp
mv $@.tmp $@
.PHONY: clean

6
www/OnlineHelpInfo.js Normal file
View File

@ -0,0 +1,6 @@
var proxmoxOnlineHelpInfo = {
"pbs_documentation_index" : {
"link" : "/pbs-docs/index.html",
"title" : "Proxmox Backup Server Documentation Index"
}
};