From 9bd3ebe20708b3d61f1cab8daeeffe8748f93852 Mon Sep 17 00:00:00 2001 From: Angus Gibson Date: Wed, 9 Dec 2015 16:14:54 +1100 Subject: [PATCH] Dropdown on commits page to choose branch #1846 I've mostly duplicated the dropdown code from repo/home.tmpl, which basically only required a change to the URL. This could probably be broken out into something more modular. --- public/js/gogs.js | 7 +++--- templates/repo/commits.tmpl | 44 +++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 3 deletions(-) diff --git a/public/js/gogs.js b/public/js/gogs.js index be17b8c8f..427280db5 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -218,8 +218,9 @@ function initRepository() { }); } - // File list - if ($('.repository.file.list').length > 0) { + // File list and commits + if ($('.repository.file.list').length > 0 || + ('.repository.commits').length > 0) { initFilterSearchDropdown('.choose.reference .dropdown'); $('.reference.column').click(function () { @@ -1036,4 +1037,4 @@ $(window).load(function () { } }).trigger('hashchange'); } -}); \ No newline at end of file +}); diff --git a/templates/repo/commits.tmpl b/templates/repo/commits.tmpl index 879f762df..0c8ca443c 100644 --- a/templates/repo/commits.tmpl +++ b/templates/repo/commits.tmpl @@ -2,6 +2,50 @@
{{template "repo/header" .}}
+
+ +
{{template "repo/commits_table" .}}