From: John Olheiser <42128690+jolheiser@users.noreply.github.com> Date: Wed, 18 Dec 2019 03:59:59 +0000 (-0600) Subject: Fix some SimpleMDE (#9400) X-Git-Tag: v1.11.0-rc1~123 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ba8f93a14e7db45ca02b1d0b486aab0d8da07c96;p=gitea.git Fix some SimpleMDE (#9400) Signed-off-by: jolheiser --- diff --git a/routers/repo/editor.go b/routers/repo/editor.go index 763429f8cf..fec5728525 100644 --- a/routers/repo/editor.go +++ b/routers/repo/editor.go @@ -458,6 +458,8 @@ func DeleteFilePost(ctx *context.Context, form auth.DeleteRepoFileForm) { func renderUploadSettings(ctx *context.Context) { ctx.Data["RequireDropzone"] = true + ctx.Data["RequireTribute"] = true + ctx.Data["RequireSimpleMDE"] = true ctx.Data["UploadAllowedTypes"] = strings.Join(setting.Repository.Upload.AllowedTypes, ",") ctx.Data["UploadMaxSize"] = setting.Repository.Upload.FileMaxSize ctx.Data["UploadMaxFiles"] = setting.Repository.Upload.MaxFiles diff --git a/routers/repo/pull.go b/routers/repo/pull.go index fdce18f7a4..c1a2a25a38 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -588,6 +588,7 @@ func ViewPullFiles(ctx *context.Context) { setPathsCompareContext(ctx, baseCommit, commit, headTarget) ctx.Data["RequireHighlightJS"] = true + ctx.Data["RequireSimpleMDE"] = true ctx.Data["RequireTribute"] = true if ctx.Data["Assignees"], err = ctx.Repo.Repository.GetAssignees(); err != nil { ctx.ServerError("GetAssignees", err)