diff options
Diffstat (limited to 'routers/repo/issue.go')
-rw-r--r-- | routers/repo/issue.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go index a4efb68024..b031e42ce7 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -291,6 +291,8 @@ func NewIssue(ctx *middleware.Context) { return } + ctx.Data["RequireHighlightJS"] = true + ctx.HTML(200, ISSUE_NEW) } @@ -623,6 +625,9 @@ func ViewIssue(ctx *middleware.Context) { ctx.Data["Issue"] = issue ctx.Data["IsIssueOwner"] = ctx.Repo.IsAdmin() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id)) ctx.Data["SignInLink"] = setting.AppSubUrl + "/user/login" + + ctx.Data["RequireHighlightJS"] = true + ctx.HTML(200, ISSUE_VIEW) } |