Browse Source

public/ng: fix auto-completion #832

tags/v1.2.0-rc1
Unknwon 11 years ago
parent
commit
3d9cda2d98
4 changed files with 3 additions and 19 deletions
  1. +1
    -1
      gogs.go
  2. +0
    -16
      public/js/app.js
  3. +1
    -1
      public/ng/js/gogs.js
  4. +1
    -1
      templates/.VERSION

+ 1
- 1
gogs.go View File

@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)

const APP_VER = "0.5.12.0131 Beta"
const APP_VER = "0.5.12.0201 Beta"

func init() {
runtime.GOMAXPROCS(runtime.NumCPU())


+ 0
- 16
public/js/app.js View File

@@ -1052,22 +1052,6 @@ function initRepoSetting() {
return;
}
Gogits.getUsers($this.val(), $this.next());
/*$.ajax({
url: '/api/v1/users/search?q=' + $this.val(),
dataType: "json",
success: function (json) {
if (json.ok && json.data.length) {
var html = '';
$.each(json.data, function (i, item) {
html += '<li><img src="' + item.avatar + '">' + item.username + '</li>';
});
$this.next().toggleShow();
$this.next().find('ul').html(html);
} else {
$this.next().toggleHide();
}
}
});*/
}).on('focus', function () {
if (!$(this).val()) {
$(this).next().toggleHide();


+ 1
- 1
public/ng/js/gogs.js View File

@@ -608,7 +608,7 @@ function initTeamMembersList() {
$ul.toggleShow();
}
}).next().next().find('ul').on("click", 'li', function () {
$('#org-team-members-add').val($(this).text());
$('#org-team-members-add').val($(this).find('.username').text());
$ul.toggleHide();
});
}


+ 1
- 1
templates/.VERSION View File

@@ -1 +1 @@
0.5.12.0131 Beta
0.5.12.0201 Beta

Loading…
Cancel
Save