summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-11-11 16:19:28 -0500
committerUnknwon <u@gogs.io>2015-11-11 16:19:28 -0500
commit908f2924ceacc89bd75c5b89f68a653a16dcfbec (patch)
tree83fcf226c66d3900856424e6cd835305f842a1b2
parentf28173bf50e5f3491edc1e3bd6fd2d5828a81333 (diff)
downloadgitea-908f2924ceacc89bd75c5b89f68a653a16dcfbec.tar.gz
gitea-908f2924ceacc89bd75c5b89f68a653a16dcfbec.zip
fix #1824 and fix #1917
-rw-r--r--README.md2
-rw-r--r--gogs.go2
-rw-r--r--public/js/gogs.js11
-rw-r--r--templates/.VERSION2
-rw-r--r--templates/repo/issue/comment_tab.tmpl2
-rw-r--r--templates/repo/issue/view_content.tmpl4
6 files changed, 17 insertions, 6 deletions
diff --git a/README.md b/README.md
index 25b84d8eb3..25497f4286 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra
![](public/img/gogs-large-resize.png)
-##### Current version: 0.7.4 Beta
+##### Current version: 0.7.5 Beta
<table>
<tr>
diff --git a/gogs.go b/gogs.go
index d56dd2c41b..c0662952a9 100644
--- a/gogs.go
+++ b/gogs.go
@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
-const APP_VER = "0.7.4.1110 Beta"
+const APP_VER = "0.7.5.1111 Beta"
func init() {
runtime.GOMAXPROCS(runtime.NumCPU())
diff --git a/public/js/gogs.js b/public/js/gogs.js
index f297191a90..68e286bc8c 100644
--- a/public/js/gogs.js
+++ b/public/js/gogs.js
@@ -21,6 +21,8 @@ function initCommentPreviewTab($form) {
}
);
});
+
+ buttonsClickOnEnter();
}
function initCommentForm() {
@@ -537,6 +539,13 @@ function initAdmin() {
}
}
+function buttonsClickOnEnter() {
+ $('.ui.button').keypress(function(e){
+ if (e.keyCode == 13)
+ $(this).click();
+ });
+}
+
$(document).ready(function () {
csrf = $('meta[name=_csrf]').attr("content");
suburl = $('meta[name=_suburl]').attr("content");
@@ -670,6 +679,8 @@ $(document).ready(function () {
$($(this).data('modal')).modal('show');
});
+ buttonsClickOnEnter();
+
initCommentForm();
initInstall();
initRepository();
diff --git a/templates/.VERSION b/templates/.VERSION
index ba0a480335..27f1c9ed1f 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.7.4.1110 Beta \ No newline at end of file
+0.7.5.1111 Beta \ No newline at end of file
diff --git a/templates/repo/issue/comment_tab.tmpl b/templates/repo/issue/comment_tab.tmpl
index a2b5bea275..5ffe1e0459 100644
--- a/templates/repo/issue/comment_tab.tmpl
+++ b/templates/repo/issue/comment_tab.tmpl
@@ -4,7 +4,7 @@
<a class="item" data-tab="preview" data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.RepoLink}}">{{.i18n.Tr "repo.release.preview"}}</a>
</div>
<div class="ui bottom attached active tab segment" data-tab="write">
- <textarea id="content" name="content"></textarea>
+ <textarea id="content" name="content" tabindex="1"></textarea>
</div>
<div class="ui bottom attached tab segment markdown" data-tab="preview">
{{.i18n.Tr "repo.release.loading"}}
diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl
index 7c413fb3ef..f838072c70 100644
--- a/templates/repo/issue/view_content.tmpl
+++ b/templates/repo/issue/view_content.tmpl
@@ -210,12 +210,12 @@
{{.i18n.Tr "repo.issues.reopen_issue"}}
</div>
{{else}}
- <div id="status-button" class="ui red basic button" data-status="{{.i18n.Tr "repo.issues.close_issue"}}" data-status-and-comment="{{.i18n.Tr "repo.issues.close_comment_issue"}}" data-status-val="close">
+ <div id="status-button" class="ui red basic button" tabindex="3" data-status="{{.i18n.Tr "repo.issues.close_issue"}}" data-status-and-comment="{{.i18n.Tr "repo.issues.close_comment_issue"}}" data-status-val="close">
{{.i18n.Tr "repo.issues.close_issue"}}
</div>
{{end}}
{{end}}
- <button class="ui green button">
+ <button class="ui green button" tabindex="2">
{{.i18n.Tr "repo.issues.create_comment"}}
</button>
</div>