diff options
author | Joubert RedRat <me+github@redrat.com.br> | 2016-11-07 11:26:13 -0200 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2016-11-07 13:26:19 -0200 |
commit | 28bee2810221f9da62443e4dc1c52199f1dc4d1b (patch) | |
tree | 3641d17c8cdad4d58a91294e32a28f57d688c37f /public | |
parent | f430d26f7ee7530e9613e6fe5055bec12d7f4d92 (diff) | |
download | gitea-28bee2810221f9da62443e4dc1c52199f1dc4d1b.tar.gz gitea-28bee2810221f9da62443e4dc1c52199f1dc4d1b.zip |
Replace Gogs to Gitea in installation options
Diffstat (limited to 'public')
-rw-r--r-- | public/js/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/js/index.js b/public/js/index.js index d7fca17423..b7b18187a0 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -211,8 +211,8 @@ function initInstall() { // Database type change detection. $("#db_type").change(function () { - var sqliteDefault = 'data/gogs.db'; - var tidbDefault = 'data/gogs_tidb'; + var sqliteDefault = 'data/gitea.db'; + var tidbDefault = 'data/gitea_tidb'; var dbType = $(this).val(); if (dbType === "SQLite3" || dbType === "TiDB") { |